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.
58 lines
3.1 KiB
C#
58 lines
3.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 RegulatoryProhibition
|
|
{
|
|
/// <summary>
|
|
/// Indicates the derived harmonized code value<br>Example: 01
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("derivedHarmonizedCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string DerivedHarmonizedCode { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("advisory", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Message Advisory { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates one based index identifying the associated commodity.<br>Example: 12
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("commodityIndex", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public int? CommodityIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the prohibition source type.<br>Example: source
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("source", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Source { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the shipment rule type.<br>Example: ["categories"]
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("categories", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> Categories { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the prohibition type.<br>Example: type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("waiver", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public RegulatoryWaiver Waiver { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the prohibitory status.<br>Example: status
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("status", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Status { 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; }
|
|
}
|
|
|
|
}
|
|
} |