UNPKG

cecon-interfaces

Version:
13 lines (12 loc) 498 B
import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioWebhook } from "../interfaces"; export declare class PayioChefConfigEntity implements IPayioChefConfig { createdAt: Date; id: string; name: string; operation: IPayioChefConfigOperation; printer: IPayioChefConfigPrinter | null; scale: IPayioChefConfigScale; updatedAt: Date; webhook: IPayioWebhook[]; constructor(data?: Partial<PayioChefConfigEntity>); }