PayNow

SubscriptionPaymentMethodDto

Represents the payment method a store's subscription is billed to.

idstringRequired
The identifier of the payment method within the payment gateway.
typestringRequired
The kind of payment method, such as a card.
card_brandstringOptional
The card network, when the payment method is a card.
card_exp_monthintegerOptional
The month the card expires, when the payment method is a card.
card_exp_yearintegerOptional
The year the card expires, when the payment method is a card.
card_last4stringOptional
The last four digits of the card, when the payment method is a card.
Example
{
  "id": "string",
  "type": "string",
  "card_brand": "string",
  "card_exp_month": 0,
  "card_exp_year": 0,
  "card_last4": "string"
}