@selfcommunity/api-services
Version:
Client api for SelfCommunity.
32 lines (31 loc) • 537 B
TypeScript
/**
* 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;
}