namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
///
/// Indicates the tracking details of the package.Required for child shipments of an oneLabelAtATime shipments
///
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class MasterTrackingId
{
///
/// This is FedEx tracking Identifier associated with the package.<br>Example: 8600
///
[Newtonsoft.Json.JsonProperty("formId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string FormId { get; set; }
///
/// Specify the FedEx transportation type. <br>Example: EXPRESS
///
[Newtonsoft.Json.JsonProperty("trackingIdType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TrackingIdType { get; set; }
///
/// Specify the USPS tracking Identifier associated with FedEx SmartPost shipment.<br>Example: 92
///
[Newtonsoft.Json.JsonProperty("uspsApplicationId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UspsApplicationId { get; set; }
///
/// This is the number associated with the package that is used to track it.For child shipment of an oneLabelAtATime shipments,this should be same as the masterTrackingNumber of the parent shipment. <br>Example: 49XXX0000XXX20032835
///
[Newtonsoft.Json.JsonProperty("trackingNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TrackingNumber { get; set; }
private System.Collections.Generic.IDictionary _additionalProperties;
[Newtonsoft.Json.JsonExtensionData]
public System.Collections.Generic.IDictionary AdditionalProperties
{
get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); }
set { _additionalProperties = value; }
}
}
}