/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface WebhookCreateRequest */ export interface WebhookCreateRequest { /** * * @type {string} * @memberof WebhookCreateRequest */ url: string; /** * When true the webhook delivers events; when false events are silently skipped * @type {boolean} * @memberof WebhookCreateRequest */ isEnabled: boolean; /** * Array of subscribed event type names (e.g. "admin.user.created", "admin.webhook.updated") * @type {Array} * @memberof WebhookCreateRequest */ events: Array; } export declare function WebhookCreateRequestFromJSON(json: any): WebhookCreateRequest; export declare function WebhookCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookCreateRequest; export declare function WebhookCreateRequestToJSON(value?: WebhookCreateRequest | null): any;