Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Phone.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the phone details
/// 
public class Phone
{
    #region Properties

    /// 
    /// Gets or sets the phone type.
    /// 
    [JsonProperty(PropertyName = "phone_type")]
    public string PhoneType { get; set; }

    /// 
    /// Gets or sets the phone number, in its canonical international [E.164 numbering plan format](https://www.itu.int/rec/T-REC-E.164/en).
    /// 
    [JsonProperty(PropertyName = "phone_number")]
    public PhoneNumber PhoneNumber { get; set; }

    #endregion
}