/** * 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 { ElementsGroupReference, ElementsUserReference } from './'; /** * * @export * @interface Workstation */ export interface Workstation { /** * * @type {string} * @memberof Workstation */ id: string; /** * * @type {string} * @memberof Workstation */ readonly displayName: string; /** * * @type {Array} * @memberof Workstation */ rdcAllowUsers?: Array; /** * * @type {Array} * @memberof Workstation */ rdcAllowGroups?: Array; /** * * @type {{ [key: string]: string | undefined; }} * @memberof Workstation */ report?: { [key: string]: string | undefined; }; /** * * @type {string} * @memberof Workstation */ name?: string | null; /** * * @type {string} * @memberof Workstation */ hostname: string; /** * * @type {Date} * @memberof Workstation */ rdcLastUsed?: Date | null; /** * * @type {boolean} * @memberof Workstation */ rdcDisableUpnp?: boolean; /** * * @type {number} * @memberof Workstation */ rdcClientPort?: number | null; /** * * @type {number} * @memberof Workstation */ rdcHostPort?: number | null; } export declare function WorkstationFromJSON(json: any): Workstation; export declare function WorkstationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Workstation; export declare function WorkstationToJSON(value?: Workstation | null): any;