/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - WEBHOOK_STATUS_UNSPECIFIED: Webhook status not specified * - WEBHOOK_STATUS_ACTIVE: Webhook is active and receiving events * - WEBHOOK_STATUS_DISABLED: Webhook is disabled due to repeated failures * - WEBHOOK_STATUS_PAUSED: Webhook is paused by user action * @export */ export declare const WebhookStatus: { readonly WebhookStatusUnspecified: "WEBHOOK_STATUS_UNSPECIFIED"; readonly WebhookStatusActive: "WEBHOOK_STATUS_ACTIVE"; readonly WebhookStatusDisabled: "WEBHOOK_STATUS_DISABLED"; readonly WebhookStatusPaused: "WEBHOOK_STATUS_PAUSED"; }; export type WebhookStatus = typeof WebhookStatus[keyof typeof WebhookStatus]; export declare function instanceOfWebhookStatus(value: any): boolean; export declare function WebhookStatusFromJSON(json: any): WebhookStatus; export declare function WebhookStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookStatus; export declare function WebhookStatusToJSON(value?: WebhookStatus | null): any; export declare function WebhookStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): WebhookStatus;