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.
63 lines
3.5 KiB
C#
63 lines
3.5 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes
|
|
{
|
|
/// <summary>
|
|
/// Dangerous Goods Container
|
|
/// </summary>
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class DangerousGoodsContainer
|
|
{
|
|
/// <summary>
|
|
/// Specify the shipper name(offeror) or contact number. Required on all shipping papers.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("offeror", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Offeror { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the kinds and quantities of all hazardous commodities in the current container.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("hazardousCommodities", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<HazardousCommodityContent> HazardousCommodities { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the number of containers.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("numberOfContainers", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public int? NumberOfContainers { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the type of container.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("containerType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ContainerType { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("emergencyContactNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public PhoneNumber EmergencyContactNumber { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("packaging", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public HazardousCommodityPackagingDetail Packaging { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the packing type used.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("packingType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public DangerousGoodsContainerPackingType? PackingType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate the packaging type of the container used to package the radioactive materials.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("radioactiveContainerClass", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public DangerousGoodsContainerRadioactiveContainerClass? RadioactiveContainerClass { 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; }
|
|
}
|
|
|
|
}
|
|
} |