/** * 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. */ /** * * @export * @interface TestSlackIntegrationResponse */ export interface TestSlackIntegrationResponse { /** * * @type {boolean} * @memberof TestSlackIntegrationResponse */ success?: boolean; } /** * Check if a given object implements the TestSlackIntegrationResponse interface. */ export declare function instanceOfTestSlackIntegrationResponse(value: object): value is TestSlackIntegrationResponse; export declare function TestSlackIntegrationResponseFromJSON(json: any): TestSlackIntegrationResponse; export declare function TestSlackIntegrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TestSlackIntegrationResponse; export declare function TestSlackIntegrationResponseToJSON(json: any): TestSlackIntegrationResponse; export declare function TestSlackIntegrationResponseToJSONTyped(value?: TestSlackIntegrationResponse | null, ignoreDiscriminator?: boolean): any;