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.

43 lines
2.2 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Indicates the tracking details of the package.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class TrackingId
{
/// <summary>
/// This is FedEx tracking Identifier associated with the package.&lt;br&gt;Example: 8600
/// </summary>
[Newtonsoft.Json.JsonProperty("formId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string FormId { get; set; }
/// <summary>
/// Specify the FedEx transportation type. &lt;br&gt;Example: EXPRESS
/// </summary>
[Newtonsoft.Json.JsonProperty("trackingIdType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TrackingIdType { get; set; }
/// <summary>
/// Specify the USPS tracking Identifier associated with FedEx SmartPost shipment.&lt;br&gt;Example: 92
/// </summary>
[Newtonsoft.Json.JsonProperty("uspsApplicationId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UspsApplicationId { get; set; }
/// <summary>
/// This is the number associated with the package that is used to track it. &lt;br&gt;Example: 49XXX0000XXX20032835
/// </summary>
[Newtonsoft.Json.JsonProperty("trackingNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TrackingNumber { 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; }
}
}
}