/** * 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 WorkstationPartialUpdate */ export interface WorkstationPartialUpdate { /** * * @type {Array} * @memberof WorkstationPartialUpdate */ rdcAllowUsers?: Array; /** * * @type {Array} * @memberof WorkstationPartialUpdate */ rdcAllowGroups?: Array; /** * * @type {{ [key: string]: string | undefined; }} * @memberof WorkstationPartialUpdate */ report?: { [key: string]: string | undefined; }; /** * * @type {string} * @memberof WorkstationPartialUpdate */ name?: string | null; /** * * @type {string} * @memberof WorkstationPartialUpdate */ hostname?: string; /** * * @type {Date} * @memberof WorkstationPartialUpdate */ rdcLastUsed?: Date | null; /** * * @type {boolean} * @memberof WorkstationPartialUpdate */ rdcDisableUpnp?: boolean; /** * * @type {number} * @memberof WorkstationPartialUpdate */ rdcClientPort?: number | null; /** * * @type {number} * @memberof WorkstationPartialUpdate */ rdcHostPort?: number | null; } export declare function WorkstationPartialUpdateFromJSON(json: any): WorkstationPartialUpdate; export declare function WorkstationPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkstationPartialUpdate; export declare function WorkstationPartialUpdateToJSON(value?: WorkstationPartialUpdate | null): any;