@idfy/sdk
Version:
Node.js SDK for Idfy REST API
24 lines (23 loc) • 530 B
TypeScript
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[];
}