swag-payments/spec/definitions/Shop.yaml
Evgeny Levenets ceb9907dd5
CAPI-249: add payout terms support (#164) (#165)
* CAPI-245: enlarge international entities
* CAPI-249: add payout terms support to PaymentInstitution api
* CAPI-249: add ability to change payout schedule
2018-02-27 11:26:13 +03:00

51 lines
1.5 KiB
YAML

description: Данные магазина
type: object
required:
- id
- createdAt
- isBlocked
- isSuspended
- location
- categoryID
- details
- contractID
properties:
id:
description: Идентификатор магазина
type: string
createdAt:
description: Дата и время создания
type: string
format: date-time
isBlocked:
description: Заблокирован ли магазин?
type: boolean
isSuspended:
description: Приостановлены ли операции в рамках магазина?
type: boolean
categoryID:
description: |
Идентификатор категории товаров и услуг, предлагаемых в этом магазине
type: integer
format: int32
location:
$ref: '#/definitions/ShopLocation'
details:
$ref: '#/definitions/ShopDetails'
contractID:
description: |
Идентификатор договора, на основании которого производится обслуживание
магазина
type: string
payoutToolID:
description: |
Идентификатор средства вывода в рамках контракта, используемое в процессе
вывода по магазину
type: string
scheduleID:
description: Идентификатор расписания выводов
type: integer
format: int32
account:
$ref: '#/definitions/ShopAccount'