UNPKG

@selfcommunity/api-services

Version:
32 lines (31 loc) 537 B
/** * Interface WebhookParamType */ export interface WebhookParamType { /** * Active status */ is_active?: boolean; /** * Webhook target */ target: string; /** * Webhook description */ description?: string; /** * Webhook events */ events: WebhookEventsType[]; /** * Webhook SSL certificates for HTTPS requests. */ ssl_cert_verification?: boolean; } /** * Interface WebhookEventsType */ export interface WebhookEventsType { type: string; }