/** * 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. */ import { TeamsConnectionStatus } from './'; /** * * @export * @interface TeamsConnection */ export interface TeamsConnection { /** * * @type {number} * @memberof TeamsConnection */ id: number; /** * * @type {string} * @memberof TeamsConnection */ name: string; /** * * @type {TeamsConnectionStatus} * @memberof TeamsConnection */ status: TeamsConnectionStatus; } export declare function TeamsConnectionFromJSON(json: any): TeamsConnection; export declare function TeamsConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TeamsConnection; export declare function TeamsConnectionToJSON(value?: TeamsConnection | null): any;