mirror of
https://github.com/valitydev/swag-webhook-events.git
synced 2024-11-06 18:35:17 +00:00
70 lines
2.0 KiB
YAML
70 lines
2.0 KiB
YAML
description: Данные инвойса
|
||
type: object
|
||
required:
|
||
- id
|
||
- shopID
|
||
- createdAt
|
||
- status
|
||
- dueDate
|
||
- amount
|
||
- currency
|
||
- metadata
|
||
- product
|
||
properties:
|
||
id:
|
||
description: Идентификатор инвойса
|
||
type: string
|
||
shopID:
|
||
description: Идентификатор магазина
|
||
type: string
|
||
format: string
|
||
createdAt:
|
||
description: Дата и время создания
|
||
type: string
|
||
format: date-time
|
||
status:
|
||
description: Статус инвойса
|
||
type: string
|
||
enum:
|
||
- unpaid
|
||
- cancelled
|
||
- paid
|
||
- refunded
|
||
- fulfilled
|
||
reason:
|
||
description: Причина отмены или погашения инвойса
|
||
type: string
|
||
dueDate:
|
||
description: Дата и время истечения срока жизни
|
||
type: string
|
||
format: date-time
|
||
amount:
|
||
description: |
|
||
Стоимость предлагаемых товаров или услуг, в минорных денежных единицах,
|
||
например в копейках в случае указания российских рублей в качестве валюты.
|
||
type: integer
|
||
format: int64
|
||
minimum: 1
|
||
currency:
|
||
description: |
|
||
Валюта, символьный код согласно
|
||
[RFC 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
|
||
type: string
|
||
metadata:
|
||
description: Связанные с инвойсом метаданные
|
||
type: object
|
||
product:
|
||
description: Наименование предлагаемых товаров или услуг
|
||
type: string
|
||
description:
|
||
description: Описание предлагаемых товаров или услуг
|
||
type: string
|
||
cart:
|
||
description: |
|
||
Корзина с набором позиций продаваемых товаров или услуг
|
||
type: array
|
||
minItems: 1
|
||
maxItems: 100
|
||
items:
|
||
$ref: '#/definitions/InvoiceCartLine'
|