using Newtonsoft.Json; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; /// /// Represents the Bank Identification Number (BIN) details used to fund a payment /// public class BinDetails { #region Properties /// /// Gets or sets the Bank Identification Number (BIN) signifies the number that is being used to identify the granular level details (except the PII information) of the card. /// [JsonProperty(PropertyName = "bin")] public string Bin { get; set; } /// /// Gets or sets the issuer of the card instrument. /// [JsonProperty(PropertyName = "issuing_bank")] public string IssuingBank { get; set; } /// /// Gets or sets the [two-character ISO-3166-1 country code](https://developer.paypal.com/docs/integration/direct/rest/country-codes/) of the bank. /// [JsonProperty(PropertyName = "bin_country_code")] public string BinCountryCode { get; set; } /// /// Gets or sets the type of card product assigned to the BIN by the issuer. These values are defined by the issuer and may change over time. /// [JsonProperty(PropertyName = "products")] public List Products { get; set; } #endregion }