namespace TradeManageNew.APIClients.FedexAPI.Models.Ship { /// /// Specifies shipping transaction output details /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class TransactionShipmentOutputVO { /// /// 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> /// [Newtonsoft.Json.JsonProperty("serviceType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ServiceType { get; set; } /// /// 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 /// [Newtonsoft.Json.JsonProperty("shipDatestamp", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ShipDatestamp { get; set; } /// /// Indicates the Service Category.<br>Example: EXPRESS /// [Newtonsoft.Json.JsonProperty("serviceCategory", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ServiceCategory { get; set; } /// /// These are shipping document details. /// [Newtonsoft.Json.JsonProperty("shipmentDocuments", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection ShipmentDocuments { get; set; } /// /// Specifies the information about the pieces, received in the response. /// [Newtonsoft.Json.JsonProperty("pieceResponses", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection PieceResponses { get; set; } /// /// This is the service name associated with the shipment.<br>Example: FedEx Ground /// [Newtonsoft.Json.JsonProperty("serviceName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string ServiceName { get; set; } /// /// These are alert details received in the response. /// [Newtonsoft.Json.JsonProperty("alerts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection 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; } /// /// 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 /// [Newtonsoft.Json.JsonProperty("masterTrackingNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string MasterTrackingNumber { get; set; } } }