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.
61 lines
3.1 KiB
C#
61 lines
3.1 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes
|
|
{
|
|
/// <summary>
|
|
/// Indicates the provides the Service Description 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 ServiceDescription
|
|
{
|
|
/// <summary>
|
|
/// This is the service type.<br>Example: INTERNATIONAL_FIRST<br><a onclick='loadDocReference("servicetypes")'>Click here to see Service Types</a>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("serviceType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ServiceType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the service code.<br> Example: 92
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the service name.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("names", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<ProductName> Names { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies astra description. <br> Example: INTL1ST
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("astraDescription", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string AstraDescription { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies description of the service. <br> Example: FedEx Ground
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the service Id. <br> Example: EP1000000135
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("serviceId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ServiceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies service category. <br> Example: parcel
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("serviceCategory", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ServiceCategory { 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; }
|
|
}
|
|
|
|
}
|
|
} |