mirror of
https://github.com/vernu/textbee.git
synced 2026-02-20 07:34:00 -05:00
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import { WebhookEvent } from './webhook-event.enum'
|
|
|
|
export class CreateWebhookDto {
|
|
deliveryUrl: string
|
|
signingSecret?: string
|
|
events: WebhookEvent[]
|
|
}
|
|
|
|
export class UpdateWebhookDto {
|
|
isActive: boolean
|
|
deliveryUrl: string
|
|
signingSecret: string
|
|
events: WebhookEvent[]
|
|
}
|