using Newtonsoft.Json; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; /// /// Represents the payer tax information /// public class PayerTax { #region Properties /// /// Gets or sets the customer's tax ID value. /// [JsonProperty(PropertyName = "tax_id")] public string TaxId { get; set; } /// /// Gets or sets the customer's tax ID type. /// [JsonProperty(PropertyName = "tax_id_type")] public string TaxIdType { get; set; } #endregion }