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.

61 lines
3.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 CompletedPackageDetail
{
/// <summary>
/// This is package sequence number. No negative value or decimals are allowed.&lt;br&gt;Example: 256
/// </summary>
[Newtonsoft.Json.JsonProperty("sequenceNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? SequenceNumber { get; set; }
[Newtonsoft.Json.JsonProperty("operationalDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public PackageOperationalDetail OperationalDetail { get; set; }
/// <summary>
/// It specifies the signature option applied, to allow cases in which the value requested conflicted with other service features in the shipment. &lt;br&gt;Example: DIRECT
/// </summary>
[Newtonsoft.Json.JsonProperty("signatureOption", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string SignatureOption { get; set; }
/// <summary>
/// Tracking details of the package.
/// </summary>
[Newtonsoft.Json.JsonProperty("trackingIds", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<TrackingId> TrackingIds { get; set; }
/// <summary>
/// This is group shipment number. Used with request containing PACKAGE_GROUPS, to identify which group of identical packages was used to produce a reply item.&lt;br&gt;Example: 10
/// </summary>
[Newtonsoft.Json.JsonProperty("groupNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? GroupNumber { get; set; }
/// <summary>
/// Indicates the oversize classification.&lt;br&gt;Example: OVERSIZE_1
/// </summary>
[Newtonsoft.Json.JsonProperty("oversizeClass", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string OversizeClass { get; set; }
[Newtonsoft.Json.JsonProperty("packageRating", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public PackageRating PackageRating { get; set; }
/// <summary>
/// Descriptive data required for a FedEx shipment containing dry ice. Includes weight and units. This element is required when SpecialServiceType DRY_ICE is present in the SpecialServiceTypes collection at the package level.
/// </summary>
[Newtonsoft.Json.JsonProperty("dryIceWeight", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public Weight DryIceWeight { get; set; }
[Newtonsoft.Json.JsonProperty("hazardousPackageDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public CompletedHazardousPackageDetail HazardousPackageDetail { 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; }
}
}
}