namespace TradeManageNew.APIClients.FedexAPI.Models.Ship { /// /// These are package rate details, as calculated per a specific rate type. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PackageRateDetail { /// /// Indicates the weight types used in calculating this rate, such as actual weight or dimensional weight.<br> Example: DIM /// [Newtonsoft.Json.JsonProperty("ratedWeightMethod", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string RatedWeightMethod { get; set; } /// /// The sum of all freight discounts for this package.<br>Example: 44.55 /// [Newtonsoft.Json.JsonProperty("totalFreightDiscounts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? TotalFreightDiscounts { get; set; } /// /// The sum of all taxes on this package.<br>Example: 3.45 /// [Newtonsoft.Json.JsonProperty("totalTaxes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? TotalTaxes { get; set; } /// /// Indicates the minumum charge type. INTERNAL FEDEX USE ONLY.Example: minimumChargeType /// [Newtonsoft.Json.JsonProperty("minimumChargeType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string MinimumChargeType { get; set; } /// /// The package transportation charge(prior to any discounts applied).<br>Example: 45.67 /// [Newtonsoft.Json.JsonProperty("baseCharge", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? BaseCharge { get; set; } /// /// Specifies total rebates on this package.<br>Example: 4.56 /// [Newtonsoft.Json.JsonProperty("totalRebates", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? TotalRebates { get; set; } /// /// This is the rate type used.<br>Example: PAYOR_RETAIL_PACKAGE /// [Newtonsoft.Json.JsonProperty("rateType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string RateType { get; set; } [Newtonsoft.Json.JsonProperty("billingWeight", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Weight BillingWeight { get; set; } /// /// This is the net freight charges. i.e. base charge minus total freight discounts for a package.<br>Example: 4.89 /// [Newtonsoft.Json.JsonProperty("netFreight", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? NetFreight { get; set; } /// /// These are all surcharges on this package.<br><a onclick='loadDocReference("surcharges")'>click here to see Surcharges</a> /// [Newtonsoft.Json.JsonProperty("surcharges", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection Surcharges { get; set; } /// /// The sum of all surcharges on this package.<br>Example: 22.56 /// [Newtonsoft.Json.JsonProperty("totalSurcharges", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? TotalSurcharges { get; set; } /// /// This is sum of net freight and total surcharges (not including totalTaxes) for this package.<br>Example: 12.56 /// [Newtonsoft.Json.JsonProperty("netFedExCharge", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? NetFedExCharge { get; set; } /// /// This is the sum of net freight, total surcharges and total taxes for a package.<br>Example: 121.56 /// [Newtonsoft.Json.JsonProperty("netCharge", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? NetCharge { get; set; } /// /// This is the currency code. <br>Example: USD<br><a onclick='loadDocReference("currencycodes")'>click here to see Currency codes</a> /// [Newtonsoft.Json.JsonProperty("currency", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Currency { 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; } } } }