mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
fb18643a35
* replace offset and total count with continuation token for magista-related requests * add payment status timestamp * offset is still presented in "searchPayouts" request
59 lines
2.0 KiB
YAML
59 lines
2.0 KiB
YAML
type: object
|
||
allOf:
|
||
- $ref: '#/definitions/PaymentStatus'
|
||
- type: object
|
||
required:
|
||
- id
|
||
- invoiceID
|
||
- createdAt
|
||
- amount
|
||
- currency
|
||
- payer
|
||
- flow
|
||
properties:
|
||
id:
|
||
description: Идентификатор платежа
|
||
type: string
|
||
shortID:
|
||
description: Cокращенный идентификатор платежа и инвойса (spid)
|
||
type: string
|
||
invoiceID:
|
||
description: 'Идентификатор инвойса, в рамках которого был создан платеж'
|
||
type: string
|
||
shopID:
|
||
description: 'Идентификатор магазина, в рамках которого был создан платеж'
|
||
type: string
|
||
createdAt:
|
||
description: Дата и время создания
|
||
type: string
|
||
format: date-time
|
||
amount:
|
||
description: |
|
||
Стоимость предлагаемых товаров или услуг, в минорных денежных
|
||
единицах, например в копейках в случае указания российских рублей в
|
||
качестве валюты.
|
||
type: integer
|
||
format: int64
|
||
minimum: 1
|
||
fee:
|
||
description: 'Комиссия системы, в минорных денежных единицах'
|
||
type: integer
|
||
format: int64
|
||
minimum: 0
|
||
currency:
|
||
x-rebillyMerge:
|
||
- $ref: '#/definitions/Currency'
|
||
payer:
|
||
$ref: '#/definitions/Payer'
|
||
flow:
|
||
$ref: '#/definitions/PaymentFlow'
|
||
geoLocationInfo:
|
||
$ref: '#/definitions/GeoLocationInfo'
|
||
metadata:
|
||
description: Связанные с платежом метаданные
|
||
type: object
|
||
statusChangedAt:
|
||
description: Дата и время изменения статуса платежа
|
||
type: string
|
||
format: date-time
|