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.

68 lines
3.7 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// These are shipping document/label specific information.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class LabelResponseVO
{
/// <summary>
/// This is the content key of the document/label.&lt;br&gt;Example: content key
/// </summary>
[Newtonsoft.Json.JsonProperty("contentKey", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string ContentKey { get; set; }
/// <summary>
/// These are the number of copies to print for the specific document type.&lt;br&gt;Example: 10
/// </summary>
[Newtonsoft.Json.JsonProperty("copiesToPrint", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? CopiesToPrint { get; set; }
/// <summary>
/// Indicates the type of document/label.
/// </summary>
[Newtonsoft.Json.JsonProperty("contentType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public LabelResponseVOContentType? ContentType { get; set; }
/// <summary>
/// This is the tracking number of the package. &lt;br&gt;Example: 49XXX0000XXX20032835&lt;br&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("trackingNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string TrackingNumber { get; set; }
/// <summary>
/// This is the document type.&lt;br&gt;Example: PDF
/// </summary>
[Newtonsoft.Json.JsonProperty("docType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string DocType { get; set; }
/// <summary>
/// These are alerts received in the label response.
/// </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>
/// Specifies if the document is encoded.&lt;br&gt;Example: encoded label
/// </summary>
[Newtonsoft.Json.JsonProperty("encodedLabel", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string EncodedLabel { get; set; }
/// <summary>
/// The URL of the shipping document/label&lt;br&gt;Example: https://.../document/v2/document/retrieve/SH,794816968200_Merge/isLabel=true&amp;autoPrint=false&lt;br&gt;&lt;i&gt;Note: The URL once created will be active for 24 hours.&lt;/i&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("url", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Url { 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; }
}
}
}