mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
16 lines (15 loc) • 352 B
TypeScript
import { IPayioDeviceChef } from './i-device-chef';
export interface IPayioDevice {
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;
}