/** * 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 { ElementsUserMiniReference } from './'; /** * * @export * @interface RDCSession */ export interface RDCSession { /** * * @type {number} * @memberof RDCSession */ id: number; /** * * @type {ElementsUserMiniReference} * @memberof RDCSession */ user: ElementsUserMiniReference; /** * * @type {number} * @memberof RDCSession */ clientSession: number; /** * * @type {string} * @memberof RDCSession */ hostWorkstation: string; } export declare function RDCSessionFromJSON(json: any): RDCSession; export declare function RDCSessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RDCSession; export declare function RDCSessionToJSON(value?: RDCSession | null): any;