namespace TradeManageNew.APIClients.FedexAPI.Models.Ship { /// /// Specifies the shipment level totals of dry ice data across all packages. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class ShipmentDryIceDetail { /// /// Specify total dry ice weight for the shipment. /// [Newtonsoft.Json.JsonProperty("totalWeight", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required] public Weight TotalWeight { get; set; } = new Weight(); /// /// Specifies the package Count for the shipment<br>Example: 10 /// [Newtonsoft.Json.JsonProperty("packageCount", Required = Newtonsoft.Json.Required.Always)] public int PackageCount { get; set; } [Newtonsoft.Json.JsonProperty("processingOptions", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public ShipmentDryIceProcessingOptionsRequested ProcessingOptions { 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; } } } }