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.
78 lines
4.9 KiB
C#
78 lines
4.9 KiB
C#
namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes
|
|
{
|
|
/// <summary>
|
|
/// The delivery commitment details
|
|
/// </summary>
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Commit
|
|
{
|
|
/// <summary>
|
|
/// Code indicating the number of transit days.<br> Example: EIGHTEEN_DAYS
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("daysInTransit", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public CommitDaysInTransit? DaysInTransit { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates if there is a guaranteed delivery option applied to the rate. This is for freight rates only.<br> Valid values<br>GUARANTEED_MORNING - guaranteed delivery on morning of date specified.<br>GUARANTEED_CLOSE_OF_BUSINESS - guaranteed delivery on date specified by close of day<br> Example: GUARANTEED_MORNING
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("guaranteedType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public CommitGuaranteedType? GuaranteedType { get; set; }
|
|
|
|
/// <summary>
|
|
/// CommitTime for SmartPost shipments.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("smartPostCommitTime", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string SmartPostCommitTime { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("dateDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public DateDetail DateDetail { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("delayDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public DelayDetail DelayDetails { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the saturdayDelivery.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("saturdayDelivery", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public bool? SaturdayDelivery { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the alternate names of commodities.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("alternativeCommodityNames", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> AlternativeCommodityNames { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("transitDays", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public TransitDays TransitDays { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is an informational message to inform client Deliverydate is unavailable. If commitTimestamp and transitTime are unavailable, then this is populated in the response in the client language.<br>Example: Deliverydate unavailable
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("label", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Label { get; set; }
|
|
|
|
/// <summary>
|
|
/// Messages concerning the ability to provide an accurate delivery commitment on an International commit quote. These could be messages providing information about why a commitment could not be returned or a successful message. <br> Example: Message
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("commitMessageDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string CommitMessageDetails { get; set; }
|
|
|
|
/// <summary>
|
|
/// The Commodity applicable to this commitment.<br> Example: DOCUMENTS
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("commodityName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string CommodityName { 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; }
|
|
}
|
|
|
|
}
|
|
} |