mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
c18c02055b
* CAPI-240: Refund is enriched by the amount and currency (#162) * CAPI-240: Opportunity to do partial refund added * CAPI-240: reason should be optional in RefundParams
19 lines
534 B
YAML
19 lines
534 B
YAML
type: object
|
|
properties:
|
|
amount:
|
|
description: |
|
|
Сумма возврата, в минорных денежных единицах,
|
|
например в копейках в случае указания российских рублей в качестве
|
|
валюты.
|
|
type: integer
|
|
format: int64
|
|
minimum: 1
|
|
currency:
|
|
x-rebillyMerge:
|
|
- $ref: '#/definitions/Currency'
|
|
reason:
|
|
description: Причина совершения возврата
|
|
type: string
|
|
maxLength: 1000
|
|
|