Przelewy24 · Schema
PaymentMethodsResponse
PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of payment method |
| id | integer | Payment method ID |
| status | boolean | Specifies whether a given method is active |
| imgUrl | string | Link do grafiki |
| mobileImgUrl | string | Link do grafiki mobilnej |
| mobile | boolean | Czy forma płatności jest dostępna mobilnie |
| availabilityHours | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PaymentMethodsResponse",
"properties": {
"name": {
"type": "string",
"description": "Name of payment method"
},
"id": {
"type": "integer",
"description": "Payment method ID"
},
"status": {
"type": "boolean",
"description": "Specifies whether a given method is active"
},
"imgUrl": {
"type": "string",
"description": "Link do grafiki"
},
"mobileImgUrl": {
"type": "string",
"description": "Link do grafiki mobilnej"
},
"mobile": {
"type": "boolean",
"description": "Czy forma p\u0142atno\u015bci jest dost\u0119pna mobilnie"
},
"availabilityHours": {
"$ref": "#/components/schemas/AvailabilityHoursResponse"
}
}
}