namespace TradeManageNew.APIClients.FedexApi.Models.Ship { [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class TaxpayerIdentification { /// /// Specify tax ID number. Maximum length is 18. <br>Example: 123567 /// [Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] public string Number { get; set; } /// /// Identifies the type of Tax Identification Number in Shipment processing.<br>Example: FEDERAL /// [Newtonsoft.Json.JsonProperty("tinType", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public TaxpayerIdentificationTinType TinType { get; set; } /// /// Identifies the usage of Tax Identification Number in Shipment processing.<br>Example: usage /// [Newtonsoft.Json.JsonProperty("usage", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Usage { get; set; } /// /// Effective Date. FORMAT[YYYY-MM-DD] <br>Example: 2024-06-13 /// [Newtonsoft.Json.JsonProperty("effectiveDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string EffectiveDate { get; set; } /// /// Expiration Date. FORMAT[YYYY-MM-DD]<br>Example: 2024-06-13 /// [Newtonsoft.Json.JsonProperty("expirationDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ExpirationDate { get; set; } } }