mirror of
https://github.com/vernu/textbee.git
synced 2026-06-29 15:25:55 +00:00
18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
export interface WebhookData {
|
|
_id?: string
|
|
deliveryUrl: string
|
|
events: string[]
|
|
isActive: boolean
|
|
signingSecret: string
|
|
}
|
|
|
|
export interface WebhookPayload {
|
|
smsId: string
|
|
sender: string
|
|
message: string
|
|
receivedAt: string
|
|
deviceId: string
|
|
webhookSubscriptionId: string
|
|
webhookEvent: string
|
|
}
|