/** * 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. */ import type { SlackIntegration } from './SlackIntegration'; /** * * @export * @interface GetSlackIntegrationResponse */ export interface GetSlackIntegrationResponse { /** * * @type {SlackIntegration} * @memberof GetSlackIntegrationResponse */ slackIntegration?: SlackIntegration; } /** * Check if a given object implements the GetSlackIntegrationResponse interface. */ export declare function instanceOfGetSlackIntegrationResponse(value: object): value is GetSlackIntegrationResponse; export declare function GetSlackIntegrationResponseFromJSON(json: any): GetSlackIntegrationResponse; export declare function GetSlackIntegrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSlackIntegrationResponse; export declare function GetSlackIntegrationResponseToJSON(json: any): GetSlackIntegrationResponse; export declare function GetSlackIntegrationResponseToJSONTyped(value?: GetSlackIntegrationResponse | null, ignoreDiscriminator?: boolean): any;