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.

28 lines
1.4 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// This is the response received when a shipment is requested.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class BaseProcessOutputVO_ShipShipment
{
/// <summary>
/// These are shipping transaction details, such as master tracking number, service type, and ship date and time.
/// </summary>
[Newtonsoft.Json.JsonProperty("transactionShipments", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<TransactionShipmentOutputVO> TransactionShipments { get; set; }
/// <summary>
/// The alerts received when processing a shipment request.
/// </summary>
[Newtonsoft.Json.JsonProperty("alerts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<Alert> Alerts { get; set; }
/// <summary>
/// Unique identifier for a Job. Example: abc123456
/// </summary>
[Newtonsoft.Json.JsonProperty("jobId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string JobId { get; set; }
}
}