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#

2 months ago
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&lt;br&gt;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.&lt;br&gt;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.&lt;br&gt;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.&lt;br&gt;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.&lt;br&gt;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.&lt;br&gt;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; }
}
}
}