import { DeviceEntity, OrganizationEntity, GroupEntity } from '../../..'; import { NetworkInterfaceClass, SystemClass, HardwareClass, SystemSoftware } from '../device.stat.entity'; export declare class SubmitDeviceStatusDto { /** * @deprecated */ boot_time?: number; /** * Unix time in seconds */ bootTime?: number; firmware: string; network: NetworkInterfaceClass[]; system: SystemClass; hardware: HardwareClass; software?: SystemSoftware; } export declare class CreateDeviceStatusDto extends SubmitDeviceStatusDto { bootTime: number; device: DeviceEntity; organization: OrganizationEntity; groups?: GroupEntity[]; }