/** * 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_SOURCE_UNSPECIFIED: Webhook source not specified (defaults to LINKBREAKERS) * - WEBHOOK_SOURCE_LINKBREAKERS: Webhook created manually through the Linkbreakers dashboard/platform * - WEBHOOK_SOURCE_MAKE: Webhook created automatically via Make.com integration * - WEBHOOK_SOURCE_ZAPIER: Webhook created automatically via Zapier integration * @export */ export declare const WebhookSource: { readonly WebhookSourceUnspecified: "WEBHOOK_SOURCE_UNSPECIFIED"; readonly WebhookSourceLinkbreakers: "WEBHOOK_SOURCE_LINKBREAKERS"; readonly WebhookSourceMake: "WEBHOOK_SOURCE_MAKE"; readonly WebhookSourceZapier: "WEBHOOK_SOURCE_ZAPIER"; }; export type WebhookSource = typeof WebhookSource[keyof typeof WebhookSource]; export declare function instanceOfWebhookSource(value: any): boolean; export declare function WebhookSourceFromJSON(json: any): WebhookSource; export declare function WebhookSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookSource; export declare function WebhookSourceToJSON(value?: WebhookSource | null): any; export declare function WebhookSourceToJSONTyped(value: any, ignoreDiscriminator: boolean): WebhookSource;