namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes { /// /// Dangerous Goods Container /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class DangerousGoodsContainer { /// /// Specify the shipper name(offeror) or contact number. Required on all shipping papers. /// [Newtonsoft.Json.JsonProperty("offeror", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Offeror { get; set; } /// /// Specify the kinds and quantities of all hazardous commodities in the current container. /// [Newtonsoft.Json.JsonProperty("hazardousCommodities", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection HazardousCommodities { get; set; } /// /// Indicate the number of containers. /// [Newtonsoft.Json.JsonProperty("numberOfContainers", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public int? NumberOfContainers { get; set; } /// /// Indicate the type of container. /// [Newtonsoft.Json.JsonProperty("containerType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ContainerType { get; set; } [Newtonsoft.Json.JsonProperty("emergencyContactNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PhoneNumber EmergencyContactNumber { get; set; } [Newtonsoft.Json.JsonProperty("packaging", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public HazardousCommodityPackagingDetail Packaging { get; set; } /// /// Indicate the packing type used. /// [Newtonsoft.Json.JsonProperty("packingType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DangerousGoodsContainerPackingType? PackingType { get; set; } /// /// Indicate the packaging type of the container used to package the radioactive materials. /// [Newtonsoft.Json.JsonProperty("radioactiveContainerClass", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DangerousGoodsContainerRadioactiveContainerClass? RadioactiveContainerClass { 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; } } } }