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.

32 lines
2.4 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// These are customs Option Detail, type must be indicated for each occurrence.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class CustomsOptionDetail
{
/// <summary>
/// Specify additional description about customs options. This is a required field when the Type is OTHER.
/// </summary>
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Description { get; set; }
/// <summary>
/// Specify the reason for a global return, as recognized by Customs. Valid values:&lt;ul&gt;&lt;li&gt;COURTESY_RETURN_LABEL: Applicable for Outbound shipments.&lt;/li&gt;&lt;li&gt;EXHIBITION_TRADE_SHOW: For exhibition or trade-show, outbound and inbound.&lt;/li&gt;&lt;li&gt;FAULTY_ITEM: For faulty item being returned, inbound only.&lt;/li&gt;&lt;li&gt;FOLLOWING_REPAIR: For repaired or processed item being sent, outbound only.&lt;/li&gt;&lt;li&gt;FOR_REPAIR: For repair or processing, outbound and inbound.&lt;/li&gt;&lt;li&gt;ITEM_FOR_LOAN: For loan item, outbound and inbound.&lt;/li&gt;&lt;li&gt;OTHER: Other reason, outbound and inbound. This type requires a description.&lt;/li&gt;&lt;li&gt;REJECTED: For rejected merchandise being returned, inbound.&lt;/li&gt;&lt;li&gt;REPLACEMENT: For replacement being sent, outbound only.&lt;/li&gt;&lt;li&gt;TRIAL: For use in a trial, outbound and inbound.&lt;/li&gt;&lt;/ul&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public CustomsOptionDetailType? 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; }
}
}
}