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.

43 lines
2.1 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Indicate the phone number. Only numeric values allowed.&lt;br&gt; Note that phoneNumber is mandatory when homedeliveryPremiumType is DATE_CERTAIN or EVENING.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class PhoneNumber1
{
/// <summary>
/// Area-Code&lt;br&gt;Example: 901
/// </summary>
[Newtonsoft.Json.JsonProperty("areaCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string AreaCode { get; set; }
/// <summary>
/// Local Number&lt;br&gt;Example: 3575012
/// </summary>
[Newtonsoft.Json.JsonProperty("localNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LocalNumber { get; set; }
/// <summary>
/// Extension&lt;br&gt;Example: 200
/// </summary>
[Newtonsoft.Json.JsonProperty("extension", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Extension { get; set; }
/// <summary>
/// Personal Identification Number&lt;br&gt;Example: 98712345
/// </summary>
[Newtonsoft.Json.JsonProperty("personalIdentificationNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string PersonalIdentificationNumber { 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; }
}
}
}