UNPKG

@idfy/sdk

Version:
24 lines (23 loc) 530 B
import { WebhookConfig } from './WebhookConfig'; export interface WebhookUpdateOptions { /** * Display name of the webhook. */ name?: string; /** * Determines whether the webhook is active or not. */ active?: boolean; /** * A list of events that the webhook triggers for. */ events?: string[]; /** * Webhook configuration. */ config?: WebhookConfig; /** * An optional list of event tags that the webhook triggers for. */ tags?: string[]; }