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.
46 lines
2.4 KiB
C#
46 lines
2.4 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes
|
|
{
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class RateDiscount_1
|
|
{
|
|
/// <summary>
|
|
/// Indicates the amount for the rate discount.<br> Example: 87.5
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("amount", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public double? Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the name of the discount.<a href="/developer-portal/en-us/reference-guide.html#discounts" target="_blank">Click here to see Discounts</a> <br> Example: name
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the description for the rate discount.<br> Example: Description
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the type. <br> Example: type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the percentage of the rate discount. <br> Example: 10.5
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("percent", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public double? Percent { 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; }
|
|
}
|
|
|
|
}
|
|
} |