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.

49 lines
3.8 KiB
C#

namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes
{
/// <summary>
/// Indicate special services for which the rate data is being requested. Special Services are available at the shipment level for some or all service types.&lt;br&gt;Example: [BROKER_SELECT_OPTION]&lt;br&gt;&lt;a onclick='loadDocReference("shipmentlevelspecialservicetypes")'&gt;Click here to see Shipment level Special Service Types&lt;/a&gt;
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class RequestedShipmentSpecialServicesRequested
{
[Newtonsoft.Json.JsonProperty("returnShipmentDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public ShipmentSpecialServicesRequested_returnShipmentDetail ReturnShipmentDetail { get; set; }
[Newtonsoft.Json.JsonProperty("deliveryOnInvoiceAcceptanceDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public DeliveryOnInvoiceAcceptanceDetail DeliveryOnInvoiceAcceptanceDetail { get; set; }
[Newtonsoft.Json.JsonProperty("internationalTrafficInArmsRegulationsDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public InternationalTrafficInArmsRegulationsDetail InternationalTrafficInArmsRegulationsDetail { get; set; }
[Newtonsoft.Json.JsonProperty("holdAtLocationDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public HoldAtLocationDetail HoldAtLocationDetail { get; set; }
[Newtonsoft.Json.JsonProperty("shipmentCODDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public ShipmentSpecialServicesRequestedShipmentCODDetail ShipmentCODDetail { get; set; }
[Newtonsoft.Json.JsonProperty("shipmentDryIceDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public ShipmentDryIceDetail ShipmentDryIceDetail { get; set; }
[Newtonsoft.Json.JsonProperty("internationalControlledExportDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public InternationalControlledExportDetail InternationalControlledExportDetail { get; set; }
[Newtonsoft.Json.JsonProperty("homeDeliveryPremiumDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public HomeDeliveryPremiumDetail HomeDeliveryPremiumDetail { get; set; }
/// <summary>
/// Indicate special services for which the rate data is being requested. Special Services are available at the shipment level for some or all service types.&lt;br&gt;Example: BROKER_SELECT_OPTION &lt;br&gt;&lt;a onclick='loadDocReference("shipmentlevelspecialservicetypes")'&gt;Click here to see Shipment level Special Service Types&lt;/a&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("specialServiceTypes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<string> SpecialServiceTypes { 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; }
}
}
}