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.

109 lines
6.3 KiB
C#

namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Identifies and describes an individual hazardous commodity. For 201001 load, this is based on data from the FedEx Ground Hazardous Materials Shipping Guide.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class ValidatedHazardousCommodityDescription
{
/// <summary>
/// In conjunction with the regulatory identifier, this field uniquely identifies a specific hazardous materials commodity.&lt;br&gt;Example: 876
/// </summary>
[Newtonsoft.Json.JsonProperty("sequenceNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? SequenceNumber { get; set; }
/// <summary>
/// Specifies Packing Instructions.&lt;br&gt;Example: packingInstructions
/// </summary>
[Newtonsoft.Json.JsonProperty("packingInstructions", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string PackingInstructions { get; set; }
/// <summary>
/// Specifies subsidiary Classes.&lt;br&gt;Example:["Subsidiary Classes"]
/// </summary>
[Newtonsoft.Json.JsonProperty("subsidiaryClasses", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<string> SubsidiaryClasses { get; set; }
/// <summary>
/// Specifies Hazard Label Text.&lt;br&gt;Example: labelText
/// </summary>
[Newtonsoft.Json.JsonProperty("labelText", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LabelText { get; set; }
/// <summary>
/// There are five categories of tunnel categorization with A representing the least restrictive and E as the most restrictive. Category A, as the least restrictive, will not be sign-posted. Category E, the most restrictive, only allows the passage of UN2919, UN3291, UN3331, UN3359 and UN3373.&lt;br&gt;Example: UN2919
/// </summary>
[Newtonsoft.Json.JsonProperty("tunnelRestrictionCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TunnelRestrictionCode { get; set; }
/// <summary>
/// Specifies Special Provisions if any.&lt;br&gt;Example: specialProvisions
/// </summary>
[Newtonsoft.Json.JsonProperty("specialProvisions", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string SpecialProvisions { get; set; }
/// <summary>
/// Fully-expanded descriptive text for a hazardous commodity.&lt;br&gt;Example: properShippingNameAndDescription
/// </summary>
[Newtonsoft.Json.JsonProperty("properShippingNameAndDescription", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ProperShippingNameAndDescription { get; set; }
/// <summary>
/// Specifies Technical Name.&lt;br&gt;Example: technicalName
/// </summary>
[Newtonsoft.Json.JsonProperty("technicalName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TechnicalName { get; set; }
/// <summary>
/// Specifies Symbols.&lt;br&gt;Example: symbols
/// </summary>
[Newtonsoft.Json.JsonProperty("symbols", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Symbols { get; set; }
/// <summary>
/// Information related to quantity limitations and operator or state variations as may be applicable to the dangerous goods commodity.
/// </summary>
[Newtonsoft.Json.JsonProperty("authorization", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Authorization { get; set; }
/// <summary>
/// Specifies attributes.&lt;br&gt;Example: ["attributes"]
/// </summary>
[Newtonsoft.Json.JsonProperty("attributes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<string> Attributes { get; set; }
/// <summary>
/// Specifies the Identification.&lt;br&gt;Example: 1234
/// </summary>
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Id { get; set; }
/// <summary>
/// Specifies packing Group.&lt;br&gt;Example: Packing Group
/// </summary>
[Newtonsoft.Json.JsonProperty("packingGroup", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string PackingGroup { get; set; }
/// <summary>
/// Specifies Proper Shipping Name.&lt;br&gt;Example: Proper Shipping Name
/// </summary>
[Newtonsoft.Json.JsonProperty("properShippingName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ProperShippingName { get; set; }
/// <summary>
/// Specifies hazard class.&lt;br&gt;Example: Hazard Class
/// </summary>
[Newtonsoft.Json.JsonProperty("hazardClass", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string HazardClass { 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; }
}
}
}