You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
5.7 KiB
C#

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