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.
37 lines
1.9 KiB
C#
37 lines
1.9 KiB
C#
namespace TradeManageNew.APIClients.FedexApi.Models.Ship
|
|
{
|
|
/// <summary>
|
|
/// These are completed ETD details when ELECTRONIC_TRADE_DOCUMENTS Special service type 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 CompletedEtdDetail
|
|
{
|
|
/// <summary>
|
|
/// Returns the folder id where the documents is uploaded <br> Example: "0b0493e580dc1a1b"
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("folderId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string FolderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Returns the type of the document that is being uploaded <br> Example: "COMMERCIAL_INVOICE"
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the document upload reference details.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("uploadDocumentReferenceDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<UploadDocumentReferenceDetail> UploadDocumentReferenceDetails { 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; }
|
|
}
|
|
|
|
}
|
|
} |