Properties
| Name | Type | Description |
|---|---|---|
| disabled | boolean | A boolean value indicating whether this issuer is unavailable. Can be `true` whenever the issuer is offline. |
| id | string | The unique identifier of this issuer, to submit in requests to /payments. |
| name | string | A localized name of the issuer. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentMethodIssuer",
"title": "PaymentMethodIssuer",
"properties": {
"disabled": {
"default": false,
"description": "A boolean value indicating whether this issuer is unavailable. Can be `true` whenever the issuer is offline.",
"type": "boolean"
},
"id": {
"description": "The unique identifier of this issuer, to submit in requests to /payments.",
"type": "string"
},
"name": {
"description": "A localized name of the issuer.",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
}