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.

37 lines
2.5 KiB
C#

namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// Indicates the advance booking number, shipper load /count and packing list details. This details must be provided by the user during freight shipment.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class ExpressFreightDetail
{
/// <summary>
/// This is an advanced booking number that must be acquired through the appropriate channel in the shipment origin country. Without the booking number pickup and space allocation for the Express Freight shipment are not guaranteed. &lt;br&gt;Minimum length: 5 digits &lt;br&gt; Maximum length: 12 digits &lt;br&gt;Example: XXXX56789812
/// </summary>
[Newtonsoft.Json.JsonProperty("bookingConfirmationNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string BookingConfirmationNumber { get; set; }
/// <summary>
/// Indicates the content of a container were loaded and counted by the shipper.&lt;br&gt;Minimum length: 1 digits &lt;br&gt; Maximum length: 5 digits &lt;br&gt;Example: If a skid has 32 small boxes on it that are shrinkwrapped, the shippersLoadAndCount should be “32”
/// </summary>
[Newtonsoft.Json.JsonProperty("shippersLoadAndCount", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? ShippersLoadAndCount { get; set; }
/// <summary>
/// This indicates whether or not the Packing List is enclosed with the shipment. A packing list is a document that includes details about the contents of a package. &lt;br&gt; Example: true
/// </summary>
[Newtonsoft.Json.JsonProperty("packingListEnclosed", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public bool? PackingListEnclosed { 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; }
}
}
}