SupportedPaymentOptionV2
Contains info for a supported payment option
namestring
Name of the supported payment option
Example:
VISApaymentMethodPaymentMethod (string)
The payment method used by the customer
Possible values: [CARD, BALANCE]
Example:
CARDdescriptionstring
Description of the payment option
Example:
Credit / Debit cardlimits object[]
Min and max limits for the supported payment option
Array [
currencystring
The currency of the limit amounts
Example:
EURminAmountnumber
The minimum amount required for the payment
Example:
20maxAmountnumber
The maximum amount allowed for the payment
Example:
1000]
sourceCurrenciesstring[]
List of supported source currencies for a country
Example:
["BGN","EUR"]SupportedPaymentOptionV2
{
"name": "VISA",
"paymentMethod": "CARD",
"description": "Credit / Debit card",
"limits": [
{
"value": [
{
"minAmount": 20,
"maxAmount": 2000,
"currency": "EUR"
},
{
"minAmount": 39.11,
"maxAmount": 3911.45,
"currency": "BGN"
}
]
}
],
"sourceCurrencies": [
"BGN",
"EUR"
]
}