namespace TradeManageNew.APIClients.FedexApi.Models.RatesAndTransitTimes { /// /// Indicates the telephone number to use for contact in the event of an emergency. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class PhoneNumber { /// /// Indicates the area code. /// [Newtonsoft.Json.JsonProperty("areaCode", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] public string AreaCode { get; set; } /// /// Indicates the Extension. /// [Newtonsoft.Json.JsonProperty("extension", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Extension { get; set; } /// /// The two-letter code used to identify a country.<br>Example: US /// [Newtonsoft.Json.JsonProperty("countryCode", Required = Newtonsoft.Json.Required.Always)] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] public string CountryCode { get; set; } /// /// Indicates the Personal Identification Number. /// [Newtonsoft.Json.JsonProperty("personalIdentificationNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string PersonalIdentificationNumber { get; set; } /// /// Telephone number to use for contact in the event of an emergency. /// [Newtonsoft.Json.JsonProperty("localNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string LocalNumber { get; set; } private System.Collections.Generic.IDictionary _additionalProperties; [Newtonsoft.Json.JsonExtensionData] public System.Collections.Generic.IDictionary AdditionalProperties { get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } set { _additionalProperties = value; } } } }