You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
2.7 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class CustomerReference
{
/// <summary>
/// This is a customer reference type. Note: Use type Type, RMA_ASSOCIATION and value as the RMA Number to associate Ground Call Tag shipments to the outbound shipment.&lt;br&gt;Example: DEPARTMENT_NUMBER
/// </summary>
[Newtonsoft.Json.JsonProperty("customerReferenceType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public CustomerReferenceType? CustomerReferenceType { get; set; }
/// <summary>
/// This is a customer reference type value.&lt;br&gt;Example: 3686 &lt;ul&gt;&lt;li&gt;The P_O_NUMBER value must be specified in customerReferences under requestedPackageLineItems&lt;/li&gt;&lt;li&gt;The INVOICE_NUMBER value that is printed on the FedEx-supplied invoice must be specified in customerReferences under commercialInvoice. Value defined in this section will print on the label that is attached to the package&lt;/li&gt;&lt;li&gt;The RMA value sent by the customer is returned on the label in human readable form but also as a barcode. RMA_ASSOCIATION only prints on the label as a barcode for a Return shipment.&lt;/ul&gt;NOTE:&lt;ul&gt;&lt;li&gt; INTRACOUNTRY_REGULATORY_REFERENCE is applicable only in Intra-Brazil.&lt;/li&gt;&lt;li&gt; Maximum length varies for value field depending on customerReferenceType.&lt;/li&gt;&lt;/ul&gt; Maximum length for value is as follows: &lt;ul&gt;&lt;li&gt;CUSTOMER_REFERENCE - 40(Express), 30(Ground)&lt;/li&gt;&lt;li&gt;DEPARTMENT_NUMBER - 30&lt;/li&gt;&lt;li&gt;INVOICE_NUMBER - 30&lt;/li&gt;&lt;li&gt;P_O_NUMBER - 30&lt;/li&gt;&lt;li&gt;INTRACOUNTRY_REGULATORY_REFERENCE - 30&lt;/li&gt;&lt;li&gt;RMA_ASSOCIATION - 20&lt;/li&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("value", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Value { get; set; }
private System.Collections.Generic.IDictionary<string, object> _additionalProperties;
[Newtonsoft.Json.JsonExtensionData]
public System.Collections.Generic.IDictionary<string, object> AdditionalProperties
{
get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary<string, object>()); }
set { _additionalProperties = value; }
}
}
}