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.

40 lines
2.1 KiB
C#

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
{
/// <summary>
/// Specify tax ID number. Maximum length is 18. &lt;br&gt;Example: 123567
/// </summary>
[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Always)]
[System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)]
public string Number { get; set; }
/// <summary>
/// Identifies the type of Tax Identification Number in Shipment processing.&lt;br&gt;Example: FEDERAL
/// </summary>
[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; }
/// <summary>
/// Identifies the usage of Tax Identification Number in Shipment processing.&lt;br&gt;Example: usage
/// </summary>
[Newtonsoft.Json.JsonProperty("usage", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Usage { get; set; }
/// <summary>
/// Effective Date. FORMAT[YYYY-MM-DD] &lt;br&gt;Example: 2024-06-13
/// </summary>
[Newtonsoft.Json.JsonProperty("effectiveDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string EffectiveDate { get; set; }
/// <summary>
/// Expiration Date. FORMAT[YYYY-MM-DD]&lt;br&gt;Example: 2024-06-13
/// </summary>
[Newtonsoft.Json.JsonProperty("expirationDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ExpirationDate { get; set; }
}
}