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.
62 lines
4.0 KiB
C#
62 lines
4.0 KiB
C#
namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes
|
|
{
|
|
/// <summary>
|
|
/// These special services are available at the package level for some or all service types. Needs Indicated, if rate data is being requested for the special services.
|
|
/// </summary>
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class PackageSpecialServicesRequested
|
|
{
|
|
/// <summary>
|
|
/// Indicate the special services requested.<br><a onclick='loadDocReference("packagelevelspecialservicetypes")'>Click here to see Package level Special Service Types</a>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("specialServiceTypes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> SpecialServiceTypes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Type of a Signature Option.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("signatureOptionType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public PackageSpecialServicesRequestedSignatureOptionType? SignatureOptionType { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("alcoholDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public AlcoholDetail AlcoholDetail { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("dangerousGoodsDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public DangerousGoodsDetail DangerousGoodsDetail { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("packageCODDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public PackageSpecialServicesRequestedPackageCODDetail PackageCODDetail { get; set; }
|
|
|
|
/// <summary>
|
|
/// Provide the pieceCount or VerificationBoxCount for batteries or cells that are contained within this specific package.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("pieceCountVerificationBoxCount", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public int? PieceCountVerificationBoxCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the details about the batteries or cells that are contained within this specific package.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("batteryDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<BatteryClassificationDetail> BatteryDetails { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("dryIceWeight", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Weight_1_2 DryIceWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// Provides details about the batteries or cells that are contained within this specific package.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("standaloneBatteryDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<StandaloneBatteryDetails> StandaloneBatteryDetails { 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; }
|
|
}
|
|
|
|
}
|
|
} |