namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes { /// /// Specifies the Estimated duties and taxes detail. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class EdtTaxDetail { /// /// Specifies the Estimated duties and taxes type. <br> Example: TaxType /// [Newtonsoft.Json.JsonProperty("edtTaxType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string EdtTaxType { get; set; } /// /// Specifies the amount for the estimated duties and taxes type.<br> Example: 785.12 /// [Newtonsoft.Json.JsonProperty("amount", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? Amount { get; set; } /// /// Specifies the Estimated duties and taxes taxable Value.<br> Example: 562.23 /// [Newtonsoft.Json.JsonProperty("taxableValue", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? TaxableValue { get; set; } /// /// Indicates the name for the Etd tax. /// [Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Name { get; set; } /// /// Indicates the description for the Etd tax. /// [Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Description { get; set; } /// /// Indicates the formula. /// [Newtonsoft.Json.JsonProperty("formula", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Formula { get; set; } /// /// Specifies the Estimated duties and taxes effective date. Format [YYYY-MM-DD].<br> Example: 2019-12-06 /// [Newtonsoft.Json.JsonProperty("effectiveDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string EffectiveDate { 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; } } } }