@lomi./sdk
Version:
Official Node.js SDK for the lomi. API
16 lines (15 loc) • 460 B
TypeScript
import type { CreateWebhook } from './CreateWebhook';
export type Webhook = (CreateWebhook & {
webhook_id?: string;
/**
* Secret token used to verify webhook signatures. Format: whsec_*
*/
verification_token?: string;
last_triggered_at?: string;
last_payload?: Record<string, any>;
last_response_status?: number;
last_response_body?: string;
retry_count?: number;
created_at?: string;
updated_at?: string;
});