Webiant Logo Webiant Logo
  1. No results found.

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

PayerTax.cs

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
}