Interface WebHookDeliveryResult

Result of a single webhook delivery attempt.

interface WebHookDeliveryResult {
    error?: string;
    ok: boolean;
    status?: number;
    url: string;
}

Properties

Properties

error?: string
ok: boolean
status?: number
url: string