/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ApiUserId } from './api-user-id'; /** * * @export * @interface ApiDevice */ export interface ApiDevice { /** * username * @type {string} * @memberof ApiDevice */ account?: string; /** * vendor brand name * @type {string} * @memberof ApiDevice */ brand?: string; /** * * @type {string} * @memberof ApiDevice */ created_at?: string; /** * * @type {ApiUserId} * @memberof ApiDevice */ created_by?: ApiUserId; /** * * @type {string} * @memberof ApiDevice */ deleted_at?: string; /** * * @type {ApiUserId} * @memberof ApiDevice */ deleted_by?: ApiUserId; /** * act as a hotdesk * @type {boolean} * @memberof ApiDevice */ hotdesk?: boolean; /** * * @type {Array} * @memberof ApiDevice */ hotdesks?: Array; /** * * @type {string} * @memberof ApiDevice */ id?: string; /** * * @type {string} * @memberof ApiDevice */ ip?: string; /** * * @type {string} * @memberof ApiDevice */ logged_in?: string; /** * * @type {string} * @memberof ApiDevice */ mac?: string; /** * * @type {string} * @memberof ApiDevice */ model?: string; /** * display name * @type {string} * @memberof ApiDevice */ name?: string; /** * * @type {string} * @memberof ApiDevice */ password?: string; /** * * @type {{ [key: string]: string; }} * @memberof ApiDevice */ provision?: { [key: string]: string; }; /** * * @type {boolean} * @memberof ApiDevice */ reged?: boolean; /** * * @type {string} * @memberof ApiDevice */ updated_at?: string; /** * * @type {ApiUserId} * @memberof ApiDevice */ updated_by?: ApiUserId; /** * * @type {ApiUserId} * @memberof ApiDevice */ user?: ApiUserId; } //# sourceMappingURL=api-device.d.ts.map