Files
textbee/web/lib/types.ts
2024-12-22 01:02:12 +03:00

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
}