mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 09:35:22 +00:00
28 lines
872 B
YAML
28 lines
872 B
YAML
description: |
|
||
Область охвата, включающая события по плательщикам в рамках определённого
|
||
магазина
|
||
allOf:
|
||
- $ref: '#/definitions/WebhookScope'
|
||
- type: object
|
||
required:
|
||
- shopID
|
||
- eventTypes
|
||
properties:
|
||
shopID:
|
||
description: Идентификатор магазина
|
||
type: string
|
||
maxLength: 40
|
||
minLength: 1
|
||
eventTypes:
|
||
description: Набор типов событий плательщиков, о которых следует оповещать
|
||
type: array
|
||
items:
|
||
type: string
|
||
enum:
|
||
- CustomerCreated
|
||
- CustomerDeleted
|
||
- CustomerReady
|
||
- CustomerBindingStarted
|
||
- CustomerBindingSucceeded
|
||
- CustomerBindingFailed
|