/** * 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 SlackChannel */ export interface SlackChannel { /** * * @type {string} * @memberof SlackChannel */ id?: string; /** * * @type {boolean} * @memberof SlackChannel */ isMember?: boolean; /** * * @type {boolean} * @memberof SlackChannel */ isPrivate?: boolean; /** * * @type {string} * @memberof SlackChannel */ name?: string; } /** * Check if a given object implements the SlackChannel interface. */ export declare function instanceOfSlackChannel(value: object): value is SlackChannel; export declare function SlackChannelFromJSON(json: any): SlackChannel; export declare function SlackChannelFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlackChannel; export declare function SlackChannelToJSON(json: any): SlackChannel; export declare function SlackChannelToJSONTyped(value?: SlackChannel | null, ignoreDiscriminator?: boolean): any;