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.

67 lines
3.7 KiB
C#

namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Descriptions for a service.
/// </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>
/// Indicate the FedEx serviceType used for this shipment. The results will be filtered by the serviceType value indicated.&lt;br&gt;Example: STANDARD_OVERNIGHT&lt;br&gt;&lt;a onclick='loadDocReference("servicetypes")'&gt;click here to see Service Types&lt;/a&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("serviceType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ServiceType { get; set; }
/// <summary>
/// Specifies code of the Service.&lt;br&gt;example: 80
/// </summary>
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Code { get; set; }
/// <summary>
/// Branded, translated, and/or localized names for this service.
/// </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>
/// FOR FEDEX INTERNAL USE ONLY. The operating org code in a service.&lt;br&gt;Example: ["FXE", "FXE"]
/// </summary>
[Newtonsoft.Json.JsonProperty("operatingOrgCodes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<string> OperatingOrgCodes { get; set; }
/// <summary>
/// Specifies astra Description.&lt;br&gt;Example: 2 DAY FRT
/// </summary>
[Newtonsoft.Json.JsonProperty("astraDescription", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AstraDescription { get; set; }
/// <summary>
/// specifies the description.&lt;br&gt;Example:description
/// </summary>
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Description { get; set; }
/// <summary>
/// FOR FEDEX INTERNAL USE ONLY, Designates the service ID.&lt;br&gt;Example: EP1000000027
/// </summary>
[Newtonsoft.Json.JsonProperty("serviceId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ServiceId { get; set; }
/// <summary>
/// FOR FEDEX INTERNAL USE ONLY. This is tied to the Product EFS interface definition which will currently contain the values of parcel.&lt;br&gt;Example: EXPRESS_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; }
}
}
}