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.

55 lines
2.6 KiB
C#

namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// These are billing details.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class BillingDetails
{
/// <summary>
/// Indicates a billing code.
/// </summary>
[Newtonsoft.Json.JsonProperty("billingCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string BillingCode { get; set; }
/// <summary>
/// These are duties and taxes billing type.
/// </summary>
[Newtonsoft.Json.JsonProperty("billingType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string BillingType { get; set; }
/// <summary>
/// This is bill to alias identifier.
/// </summary>
[Newtonsoft.Json.JsonProperty("aliasId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AliasId { get; set; }
/// <summary>
/// This is account nick name.
/// </summary>
[Newtonsoft.Json.JsonProperty("accountNickname", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AccountNickname { get; set; }
/// <summary>
/// This is bill to account number.
/// </summary>
[Newtonsoft.Json.JsonProperty("accountNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AccountNumber { get; set; }
/// <summary>
/// This is the country code of the account number.&lt;br&gt;Example: CA
/// </summary>
[Newtonsoft.Json.JsonProperty("accountNumberCountryCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AccountNumberCountryCode { 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; }
}
}
}