/** * 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 GetSlackOAuthURLResponse */ export interface GetSlackOAuthURLResponse { /** * * @type {string} * @memberof GetSlackOAuthURLResponse */ oauthUrl?: string; } /** * Check if a given object implements the GetSlackOAuthURLResponse interface. */ export declare function instanceOfGetSlackOAuthURLResponse(value: object): value is GetSlackOAuthURLResponse; export declare function GetSlackOAuthURLResponseFromJSON(json: any): GetSlackOAuthURLResponse; export declare function GetSlackOAuthURLResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSlackOAuthURLResponse; export declare function GetSlackOAuthURLResponseToJSON(json: any): GetSlackOAuthURLResponse; export declare function GetSlackOAuthURLResponseToJSONTyped(value?: GetSlackOAuthURLResponse | null, ignoreDiscriminator?: boolean): any;