cecon-interfaces
Version:
Interfaces de Projetos Cecon
18 lines (17 loc) • 419 B
TypeScript
import { IPayioDeviceChef } from './i-device-chef';
export interface IPayioDevice {
activationKey: string | null;
activationId: 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;
}