Subscription Payment Source Response
November 13, 2025 ยท View on GitHub
The payment source used to fund the payment.
Structure
SubscriptionPaymentSourceResponse
Fields
| Name | Type | Tags | Description | Getter | Setter |
|---|---|---|---|---|---|
Card | CardResponseWithBillingAddress | Optional | The payment card used to fund the payment. Card can be a credit or debit card. | CardResponseWithBillingAddress getCard() | setCard(CardResponseWithBillingAddress card) |
Example (as JSON)
{
"card": {
"name": "name6",
"billing_address": {
"address_line_1": "address_line_12",
"address_line_2": "address_line_28",
"admin_area_2": "admin_area_28",
"admin_area_1": "admin_area_14",
"postal_code": "postal_code0",
"country_code": "country_code8"
},
"expiry": "expiry4",
"currency_code": "currency_code2"
}
}