namespace TradeManageNew.APIClients.FedexAPI.Models.Ship { /// /// These are package barcode details. Each instance of this data type represents the set of barcodes (of all types) which are associated with a specific package. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PackageBarcodes { /// /// This is binary-style barcodes used for the package identification. /// [Newtonsoft.Json.JsonProperty("binaryBarcodes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection BinaryBarcodes { get; set; } /// /// This is string-style barcodes used for package identification. /// [Newtonsoft.Json.JsonProperty("stringBarcodes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection StringBarcodes { 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; } } } }