namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
///
/// Use this object to specify International Controlled Export shipment Details.<br>Note: licenseOrPermitExpirationDate and licenseOrPermitNumber are not required when type is WAREHOUSE_WITHDRAWAL.
///
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class InternationalControlledExportDetail
{
///
/// Indicate the expiration date for the license or permit. The format is YYYY-MM-DD.<br>Example: "2019-12-03"
///
[Newtonsoft.Json.JsonProperty("licenseOrPermitExpirationDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LicenseOrPermitExpirationDate { get; set; }
///
/// Indicate License Or Permit Number for the commodity being exported.<br>Example: 11
///
[Newtonsoft.Json.JsonProperty("licenseOrPermitNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LicenseOrPermitNumber { get; set; }
///
/// Indicate Entry Number for the export.<br>Example: 125
///
[Newtonsoft.Json.JsonProperty("entryNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string EntryNumber { get; set; }
///
/// Indicate the Foreign Trade Zone Code.<br>Example: US
///
[Newtonsoft.Json.JsonProperty("foreignTradeZoneCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ForeignTradeZoneCode { get; set; }
///
/// International Controlled Export Type<br>Example: WAREHOUSE_WITHDRAWAL
///
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Always)]
[System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public InternationalControlledExportDetailType Type { 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; }
}
}
}