/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 SlackConnectionStatus */ export interface SlackConnectionStatus { /** * * @type {boolean} * @memberof SlackConnectionStatus */ ok: boolean; /** * * @type {string} * @memberof SlackConnectionStatus */ team: string; /** * * @type {string} * @memberof SlackConnectionStatus */ user: string; /** * * @type {string} * @memberof SlackConnectionStatus */ url: string; } export declare function SlackConnectionStatusFromJSON(json: any): SlackConnectionStatus; export declare function SlackConnectionStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlackConnectionStatus; export declare function SlackConnectionStatusToJSON(value?: SlackConnectionStatus | null): any;