UNPKG

cecon-interfaces

Version:
21 lines (20 loc) 662 B
import { IPayioDevice } from '../interfaces/i-device'; import { PayioDeviceChefEntity } from './device-chef.entity'; /** @deprecated use MachineEntity from @arcnetdev/arcnet-payio-interfaces instead */ export declare class PayioDeviceEntity implements IPayioDevice { activationKeyId: string | null; activationKey: string | null; active: boolean; chef: PayioDeviceChefEntity | null; companyId: string; containerId: string; createdAt: Date; deviceId: string; id: string; lastAccess: Date; name: string; sandbox: boolean; tags: string[]; updatedAt: Date; constructor(data?: Partial<PayioDeviceEntity>); }