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.

35 lines
2.3 KiB
C#

namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// These are Special service elements for FedEx Ground Home Delivery shipments. If selected, element homedeliveryPremiumType is mandatory.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class HomeDeliveryPremiumDetail
{
[Newtonsoft.Json.JsonProperty("phoneNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public PhoneNumber1 PhoneNumber { get; set; }
/// <summary>
/// This is delivery date. Required for FedEx Date Certain Home Delivery. Valid dates are Monday to Sunday. &lt;br&gt;There may be a delay in delivery on Sundays to locations that are geographically difficult to access.&lt;br&gt;Example: 2019-06-26
/// </summary>
[Newtonsoft.Json.JsonProperty("deliveryDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string DeliveryDate { get; set; }
/// <summary>
/// Home Delivery Premium Type. Allows the user to specify additional premimum service options for their home delivery shipment. Customer can specify Evening delivery or a Date certain, or can specify they would like to make an appointment for the delivery.&lt;br&gt;Example: APPOINTMENT
/// </summary>
[Newtonsoft.Json.JsonProperty("homedeliveryPremiumType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public HomeDeliveryPremiumDetailHomedeliveryPremiumType? HomedeliveryPremiumType { 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; }
}
}
}