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.

51 lines
2.8 KiB
C#

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