/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { ApiUserId } from './apiUserId'; import type { UpdateDeviceBodyProvision } from './updateDeviceBodyProvision'; export type UpdateDeviceBody = { /** username */ account?: string; /** vendor brand name */ brand?: string; createdAt?: string; createdBy?: ApiUserId; deletedAt?: string; deletedBy?: ApiUserId; /** act as a hotdesk */ hotdesk?: boolean; hotdesks?: string[]; ip?: string; loggedIn?: string; mac?: string; model?: string; /** display name */ name?: string; password?: string; provision?: UpdateDeviceBodyProvision; reged?: boolean; updatedAt?: string; updatedBy?: ApiUserId; user?: ApiUserId; };