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.
64 lines
4.0 KiB
C#
64 lines
4.0 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
|
|
{
|
|
/// <summary>
|
|
/// Specifies shipping transaction output 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 TransactionShipmentOutputVO
|
|
{
|
|
/// <summary>
|
|
/// Indicate the FedEx serviceType used for this shipment. The results will be filtered by the serviceType value indicated.<br>Example: STANDARD_OVERNIGHT<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>
|
|
/// This is the shipment date. Default value is current date in case the date is not provided or a past date is provided.<br>Format [YYYY-MM-DD].<br>Example: 2019-10-14
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("shipDatestamp", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ShipDatestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the Service Category.<br>Example: EXPRESS
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("serviceCategory", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ServiceCategory { get; set; }
|
|
|
|
/// <summary>
|
|
/// These are shipping document details.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("shipmentDocuments", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<LabelResponseVO> ShipmentDocuments { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the information about the pieces, received in the response.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("pieceResponses", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<PieceResponse> PieceResponses { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is the service name associated with the shipment.<br>Example: FedEx Ground
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("serviceName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ServiceName { get; set; }
|
|
|
|
/// <summary>
|
|
/// These are alert details received in the response.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("alerts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Alerts> Alerts { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("completedShipmentDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public CompletedShipmentDetail CompletedShipmentDetail { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("shipmentAdvisoryDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public ShipmentAdvisoryDetails ShipmentAdvisoryDetails { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is a master tracking number for the shipment (must be unique for stand-alone open shipments, or unique within consolidation if consolidation key is provided).<br>Example: 794953535000
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("masterTrackingNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string MasterTrackingNumber { get; set; }
|
|
|
|
}
|
|
} |