UNPKG

cecon-interfaces

Version:
28 lines (27 loc) 923 B
import { EBarcodeFormat, EPayioChefOperationMode, EPayioChefTabMode } from '../enums'; import { IPayioChefConfigOperation } from '../interfaces'; export declare class PayioChefConfigOperationEntity implements IPayioChefConfigOperation { barcodeFormat: EBarcodeFormat; barcodeInitialFlag: string; bipOnPrint: boolean; headerMessages: string[]; listItems: string[]; multiOrder: boolean; /**@deprecated * Use SCALE mode default */ operationMode: EPayioChefOperationMode; printFormat: 'simple' | 'tabular'; showBarCode: boolean; showNetWeight: boolean; showOrderNumber: boolean; showPricePerKg: boolean; showTotalPrice: boolean; startOrderIn: number; tabFormat: string | null; tabMode: EPayioChefTabMode; tabRegistered: boolean; urlLogo: string; visionDeviceId: string; constructor(data?: Partial<PayioChefConfigOperationEntity>); }