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.

100 lines
6.7 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// These are customs clearance details. Required for International and intra-country Shipments.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class CustomsClearanceDetail
{
/// <summary>
/// These are the regulatory controls applicable to the shipment.&lt;br&gt; Example:USMCA,FOOD_OR_PERISHABLE
/// </summary>
[Newtonsoft.Json.JsonProperty("regulatoryControls", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ItemConverterType = typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public System.Collections.Generic.ICollection<RegulatoryControls> RegulatoryControls { get; set; }
/// <summary>
/// Specify broker information. Use this option only if you are using Broker Select Option for your shipment. A country code must be specified in addition to one of the following address items: postal code, city, or location id.
/// </summary>
[Newtonsoft.Json.JsonProperty("brokers", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<BrokerDetail> Brokers { get; set; }
[Newtonsoft.Json.JsonProperty("commercialInvoice", Required = Newtonsoft.Json.Required.Always)]
[System.ComponentModel.DataAnnotations.Required]
public CommercialInvoice CommercialInvoice { get; set; } = new CommercialInvoice();
/// <summary>
/// Specify the risk owner for the Freight shipment.This element is only mandatory or valid for Intra India shipments.&lt;br&gt;Example: OWN_RISK
/// </summary>
[Newtonsoft.Json.JsonProperty("freightOnValue", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public CustomsClearanceDetailFreightOnValue? FreightOnValue { get; set; }
[Newtonsoft.Json.JsonProperty("dutiesPayment", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public Payment_1 DutiesPayment { get; set; }
/// <summary>
/// Indicates the details about the dutiable packages. Maximum upto 999 commodities per shipment.
/// </summary>
[Newtonsoft.Json.JsonProperty("commodities", Required = Newtonsoft.Json.Required.Always)]
[System.ComponentModel.DataAnnotations.Required]
public System.Collections.Generic.ICollection<Commodity> Commodities { get; set; } = new System.Collections.ObjectModel.Collection<Commodity>();
/// <summary>
/// Defaults to false. Only used for international Express requests to indicate if just documents are being shipped or not. A valude of DERIVED will cause the value to be determined by PMIS based on the specified commodities information&lt;br&gt;Example: false
/// </summary>
[Newtonsoft.Json.JsonProperty("isDocumentOnly", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public bool? IsDocumentOnly { get; set; }
[Newtonsoft.Json.JsonProperty("recipientCustomsId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public RecipientCustomsId RecipientCustomsId { get; set; }
[Newtonsoft.Json.JsonProperty("customsOption", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public CustomsOptionDetail CustomsOption { get; set; }
/// <summary>
/// The descriptive data for the importer of Record for the shipment and their physical address, contact and account number information.
/// </summary>
[Newtonsoft.Json.JsonProperty("importerOfRecord", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public Party_1 ImporterOfRecord { get; set; }
/// <summary>
/// This is the locale for generated document.&lt;br&gt;Example: en_US&lt;br&gt;&lt;a onclick='loadDocReference("locales")'&gt;click here to see Locales&lt;/a&gt;&lt;br&gt;Note: If the locale is left blank or an invalid locale is entered, an error message is returned in response.
/// </summary>
[Newtonsoft.Json.JsonProperty("generatedDocumentLocale", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string GeneratedDocumentLocale { get; set; }
[Newtonsoft.Json.JsonProperty("exportDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public ExportDetail ExportDetail { get; set; }
/// <summary>
/// This is the total customs value.
/// </summary>
[Newtonsoft.Json.JsonProperty("totalCustomsValue", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public Money TotalCustomsValue { get; set; }
/// <summary>
/// Specify if the transacting parties are related.
/// </summary>
[Newtonsoft.Json.JsonProperty("partiesToTransactionAreRelated", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public bool? PartiesToTransactionAreRelated { get; set; }
[Newtonsoft.Json.JsonProperty("declarationStatementDetail", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public CustomsDeclarationStatementDetail DeclarationStatementDetail { get; set; }
/// <summary>
/// Specify insurance charges if applicable. &lt;br&gt;&lt;i&gt;Note: FedEx does not provide insurance of any kind.&lt;/i&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("insuranceCharge", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public Money InsuranceCharge { 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; }
}
}
}