cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 538 B
TypeScript
import { IPayioWebhook } from '../../chef-config';
import { IPayioBigChefConfigOperation } from './i-chef-config-operation';
import { IPayioBigChefConfigPrinter } from './i-chef-config-printer';
import { IPayioBigChefConfigScale } from './i-chef-config-scale';
export interface IPayioBigChefConfig {
createdAt: Date;
id: string;
name: string;
operation: IPayioBigChefConfigOperation;
printer: IPayioBigChefConfigPrinter | null;
scale: IPayioBigChefConfigScale;
updatedAt: Date;
webhook: IPayioWebhook[];
}