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.
68 lines
4.8 KiB
C#
68 lines
4.8 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
|
|
{
|
|
/// <summary>
|
|
/// These are special services that are available at the package level for some or all service types.
|
|
/// </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>
|
|
/// The list of all special services requested for the package.<br><a href="/developer-portal/en-us/reference-guide.html#packagespecialservicetypes" target="_blank">Click here to see Package Special Service Types</a><br>Example:ALCOHOL
|
|
/// </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>
|
|
/// Signature Option Type<br/>ADULT - Adult signature required, at recipient''s address.<br/>DIRECT - Signature required, at recipient''s address.<br>INDIRECT - Signature required, alternate address is accepted.<br/>NO_SIGNATURE_REQUIRED - Signature is not required.<br/>SERVICE_DEFAULT - Signature handled as per current Service Guide.<br>Example:ADULT
|
|
/// </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("priorityAlertDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public PriorityAlertDetail PriorityAlertDetail { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("signatureOptionDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public SignatureOptionDetail SignatureOptionDetail { 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 PackageCODDetail PackageCODDetail { get; set; }
|
|
|
|
/// <summary>
|
|
/// Provide the pieceCount or VerificationBoxCount for batteries or cells that are contained within this specific package.<br>Example:1
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("pieceCountVerificationBoxCount", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public int? PieceCountVerificationBoxCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Provide 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<BatteryDetail> BatteryDetails { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("dryIceWeight", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Weight_3 DryIceWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// Provide 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; }
|
|
}
|
|
|
|
}
|
|
} |