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.

39 lines
2.3 KiB
C#

namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Use this object to specify the appropriate destination control statement type(s). Also make sure to specify destination country and end user.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class DestinationControlDetail
{
/// <summary>
/// Specify End User name. Its is required if StatementTypes is entered as DEPARTMENT_OF_STATE. &lt;br&gt;Example: John Wick
/// </summary>
[Newtonsoft.Json.JsonProperty("endUser", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string EndUser { get; set; }
/// <summary>
/// Specify appropriate destination control statement type(s), Also make sure to specify destination country and end user.
/// </summary>
[Newtonsoft.Json.JsonProperty("statementTypes", Required = Newtonsoft.Json.Required.Always)]
[System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public DestinationControlDetailStatementTypes StatementTypes { get; set; }
/// <summary>
/// Specify DCS shipment destination country. You may enter up to four country codes in this element. Up to 11 alphanumeric characters are allowed.&lt;br&gt;Example: US&lt;br&gt;&lt;a onclick='loadDocReference("countrycodes")'&gt;click here to see Country codes&lt;/a&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("destinationCountries", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<string> DestinationCountries { 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; }
}
}
}