svet-pos-project-client / src / api / IReceipt.ts
IReceipt.ts
Raw
export interface IReceipt {
    id: string;
    templateName: string;
    tradingName: string;
    receiptType: string;
    showLogo : boolean;
    showCustomerDetails : boolean
    showOutletDetails : boolean;
    headerText : string;
    footerText : string;
    numberPrefix : string;
    titleDiscount : string;
    titleSubtotal : string;
    showBarcode : boolean;
}