mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
32 lines
952 B
YAML
32 lines
952 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:
|
||
- InvoiceCreated
|
||
- InvoicePaid
|
||
- InvoiceCancelled
|
||
- InvoiceFulfilled
|
||
- PaymentStarted
|
||
- PaymentProcessed
|
||
- PaymentCaptured
|
||
- PaymentCancelled
|
||
- PaymentRefunded
|
||
- PaymentFailed
|