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.
79 lines
4.7 KiB
C#
79 lines
4.7 KiB
C#
namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes
|
|
{
|
|
/// <summary>
|
|
/// This is the broker address used for this 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 Brokeraddress
|
|
{
|
|
/// <summary>
|
|
/// This is the combination of number, street name, etc. <br>Note: At least one line is required and streetlines more than 3 will be ignored. Empty lines should not be included. Maximum Length per line is 35.<br>Example: [10 FedEx Parkway, Suite 302, .etc.]
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("streetLines", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> StreetLines { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is city name.<br> Example: Beverly Hills
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("city", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string City { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is the state Or Province Code. State code is required for US, CA, PR and not required for other countries. Conditional. Max length is 2.<br> Example: CA<br><a onclick='loadDocReference("canadaprovincecodes")'>Click here to see State Or Province Code</a>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("stateOrProvinceCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StateOrProvinceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is the postal code. <br> Example: 90210<br><a onclick='loadDocReference("postalawarecountries")'>Click here to see Postal aware countries</a>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("postalCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string PostalCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is the country code.<br>US<br><a onclick='loadDocReference("countrycodes")'>Click here to see Country Codes</a>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("countryCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string CountryCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicate whether this address is residential (as opposed to commercial). <br> Valid values are TRUE and FALSE.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("residential", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public bool? Residential { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the classification of the address. <br> Example: residential
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("classification", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Classification { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the geographic coordinates.<br> Example: geographicCoordinates
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("geographicCoordinates", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string GeographicCoordinates { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the urbanization code.
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("urbanizationCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string UrbanizationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specify the country name.<br> Example: India
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("countryName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string CountryName { 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; }
|
|
}
|
|
|
|
}
|
|
} |