Interface Webhook

interface Webhook {
    webhook_id: string;
    url: string;
    events: WebhookEventType[];
    active: boolean;
    created_at: string;
    last_delivery_at?: null | string;
}

Hierarchy (View Summary)

Properties

webhook_id: string
url: string
active: boolean
created_at: string
last_delivery_at?: null | string