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.

95 lines
5.4 KiB
C#

namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes
{
/// <summary>
/// Identifies and describes an individual hazardous commodity.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class HazardousCommodityDescription
{
/// <summary>
/// In conjunction with the regulatory identifier, this field uniquely identifies a specific hazardous materials commodity.
/// </summary>
[Newtonsoft.Json.JsonProperty("sequenceNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? SequenceNumber { get; set; }
/// <summary>
/// Indicates any special processing options to be applied to the description of the dangerous goods commodity.
/// </summary>
[Newtonsoft.Json.JsonProperty("processingOptions", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ItemConverterType = typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public System.Collections.Generic.ICollection<ProcessingOptions> ProcessingOptions { get; set; }
/// <summary>
/// Specifies the hazardous material 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 the DOT diamond hazard label type. This element can also include limited quantity or exemption number.
/// </summary>
[Newtonsoft.Json.JsonProperty("labelText", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LabelText { get; set; }
/// <summary>
/// Specify the technical name for the hazardous commodity.
/// </summary>
[Newtonsoft.Json.JsonProperty("technicalName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TechnicalName { get; set; }
[Newtonsoft.Json.JsonProperty("packingDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public HazardousCommodityPackingDetail PackingDetails { 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>
/// The element specifies the reportable quantity of the hazardous material.
/// </summary>
[Newtonsoft.Json.JsonProperty("reportableQuantity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public bool? ReportableQuantity { get; set; }
/// <summary>
/// Indicates the percentage.
/// </summary>
[Newtonsoft.Json.JsonProperty("percentage", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public double? Percentage { get; set; }
/// <summary>
/// Specifies the ID of label text.
/// </summary>
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Id { get; set; }
/// <summary>
/// Identifies IATA packing group for a hazardous commodity.
/// </summary>
[Newtonsoft.Json.JsonProperty("packingGroup", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public HazardousCommodityDescriptionPackingGroup? PackingGroup { get; set; }
/// <summary>
/// The proper shipping name as defined by the regulation.&lt;br&gt;The name can also include qualifying words.
/// </summary>
[Newtonsoft.Json.JsonProperty("properShippingName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ProperShippingName { get; set; }
/// <summary>
/// Specify hazard class for commodity.
/// </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; }
}
}
}