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 { /// /// This is package sequence number. No negative value or decimals are allowed.<br>Example: 256 /// [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; } /// /// It specifies the signature option applied, to allow cases in which the value requested conflicted with other service features in the shipment. <br>Example: DIRECT /// [Newtonsoft.Json.JsonProperty("signatureOption", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string SignatureOption { get; set; } /// /// Tracking details of the package. /// [Newtonsoft.Json.JsonProperty("trackingIds", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection TrackingIds { get; set; } /// /// 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.<br>Example: 10 /// [Newtonsoft.Json.JsonProperty("groupNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public int? GroupNumber { get; set; } /// /// Indicates the oversize classification.<br>Example: OVERSIZE_1 /// [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; } /// /// 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. /// [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 _additionalProperties; [Newtonsoft.Json.JsonExtensionData] public System.Collections.Generic.IDictionary AdditionalProperties { get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } set { _additionalProperties = value; } } } }