/** * 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. */ /** * - SLACK_INTEGRATION_STATUS_UNSPECIFIED: Status not specified * - SLACK_INTEGRATION_STATUS_ACTIVE: Integration is active and sending notifications * - SLACK_INTEGRATION_STATUS_PAUSED: Integration is paused by user action * - SLACK_INTEGRATION_STATUS_DISCONNECTED: Integration is disconnected * @export */ export declare const SlackIntegrationStatus: { readonly SlackIntegrationStatusUnspecified: "SLACK_INTEGRATION_STATUS_UNSPECIFIED"; readonly SlackIntegrationStatusActive: "SLACK_INTEGRATION_STATUS_ACTIVE"; readonly SlackIntegrationStatusPaused: "SLACK_INTEGRATION_STATUS_PAUSED"; readonly SlackIntegrationStatusDisconnected: "SLACK_INTEGRATION_STATUS_DISCONNECTED"; }; export type SlackIntegrationStatus = typeof SlackIntegrationStatus[keyof typeof SlackIntegrationStatus]; export declare function instanceOfSlackIntegrationStatus(value: any): boolean; export declare function SlackIntegrationStatusFromJSON(json: any): SlackIntegrationStatus; export declare function SlackIntegrationStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlackIntegrationStatus; export declare function SlackIntegrationStatusToJSON(value?: SlackIntegrationStatus | null): any; export declare function SlackIntegrationStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): SlackIntegrationStatus;