/** * 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 { ElementsUserMini, Workstation } from './'; /** * * @export * @interface RDCActivation */ export interface RDCActivation { /** * * @type {string} * @memberof RDCActivation */ requestedBy: string; /** * * @type {Workstation} * @memberof RDCActivation */ clientWorkstation: Workstation; /** * * @type {Workstation} * @memberof RDCActivation */ hostWorkstation: Workstation; /** * * @type {string} * @memberof RDCActivation */ peerId: string; /** * * @type {string} * @memberof RDCActivation */ sessionId: string; /** * * @type {ElementsUserMini} * @memberof RDCActivation */ user: ElementsUserMini; } export declare function RDCActivationFromJSON(json: any): RDCActivation; export declare function RDCActivationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RDCActivation; export declare function RDCActivationToJSON(value?: RDCActivation | null): any;