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
2.0 KiB
C#
28 lines
2.0 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
|
|
{
|
|
/// <summary>
|
|
/// Use this object to specify all information on how the electronic Trade document references used with the shipment.
|
|
/// </summary>
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class ETDDetail
|
|
{
|
|
/// <summary>
|
|
/// Specifies the Post Document Upload <br> Example: POST_SHIPMENT_UPLOAD_REQUESTED
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("attributes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ItemConverterType = typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public System.Collections.Generic.ICollection<Attributes> Attributes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Use this object to specify the details regarding already uploded document(s). This object is required if the documents are uploaded Pre-Shipment uploaded documents. It is recommended to provide values for all elements under this object.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("attachedDocuments", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<UploadDocumentReferenceDetail> AttachedDocuments { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates the types of shipping documents requested by the shipper.<br>Example: CERTIFICATE_OF_ORIGIN, COMMERCIAL_INVOICE etc.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("requestedDocumentTypes", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ItemConverterType = typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public System.Collections.Generic.ICollection<RequestedDocumentTypes> RequestedDocumentTypes { get; set; }
|
|
|
|
}
|
|
} |