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.

46 lines
3.4 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes
{
/// <summary>
/// Use this object to specify the smartpost shipment details. &lt;br&gt;Required for SMARTPOST service. If SmartPostInfoDetail is indicated, the elements below it are also required.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class RequestedShipmentSmartPostInfoDetail
{
/// <summary>
/// Indicate the type of ancillary endorsement. Is required for Presorted Standard but not for returns or parcel select. Note not all are usable for all ancillary endorsements.&lt;br&gt;For more information, refer to the &lt;a href = 'https://www.fedex.com/en-us/shipping/fedex-smartpost/rates-zones.html' target='_blank'&gt;FedEx SmartPost®&lt;/a&gt;.
/// </summary>
[Newtonsoft.Json.JsonProperty("ancillaryEndorsement", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public RequestedShipmentSmartPostInfoDetailAncillaryEndorsement? AncillaryEndorsement { get; set; }
/// <summary>
/// Specify the four-digit numeric Hub ID value used during rate quote for smartport shipments.&lt;br&gt;&lt;a onclick='loadDocReference("smartposthubids")'&gt;Click here to see Hub Ids&lt;/a&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("hubId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string HubId { get; set; }
/// <summary>
/// Specify the indicia type.&lt;br&gt;Available options include:&lt;ul&gt;&lt;li&gt;MEDIA_MAIL&lt;/li&gt;&lt;li&gt;PARCEL_SELECT (1 LB through 70 LB)&lt;/li&gt;&lt;li&gt;PRESORTED_BOUND_PRINTED_MATTER&lt;/li&gt;&lt;li&gt;PRESORTED_STANDARD (less than 1 LB)&lt;/li&gt;&lt;li&gt;PARCEL_RETURN&lt;/li&gt;&lt;/ul&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("indicia", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public RequestedShipmentSmartPostInfoDetailIndicia? Indicia { get; set; }
/// <summary>
/// Specify the special handling associated with Smartpost Shipment.&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("specialServices", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public RequestedShipmentSmartPostInfoDetailSpecialServices? SpecialServices { 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; }
}
}
}