import { IPayioDeviceChef } from './i-device-chef';
/** @deprecated use IMachine from @arcnetdev/arcnet-payio-interfaces instead */
export interface IPayioDevice {
    activationKey: string | null;
    activationKeyId: string | null;
    active: boolean;
    chef: IPayioDeviceChef | null;
    companyId: string;
    containerId: string;
    createdAt: Date;
    deviceId: string;
    id: string;
    lastAccess: Date;
    name: string;
    sandbox: boolean;
    tags: string[];
    updatedAt: Date;
}
