mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
14 lines (13 loc) • 574 B
TypeScript
import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioChefConfigTabs, IPayioChefConfigWebhook } from '../interfaces';
export declare class PayioChefConfigEntity implements IPayioChefConfig {
createdAt: Date;
id: string;
name: string;
operation: IPayioChefConfigOperation;
printer: IPayioChefConfigPrinter | null;
scale: IPayioChefConfigScale;
tabs: IPayioChefConfigTabs[];
updatedAt: Date;
webhook: IPayioChefConfigWebhook[];
constructor(data?: Partial<PayioChefConfigEntity>);
}