Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents a receipt card.

    interface ReceiptCard {
        buttons: CardAction[];
        facts: Fact[];
        items: ReceiptItem[];
        tap?: CardAction;
        tax: string;
        title: string;
        total: string;
        vat?: string;
    }
    Index

    Properties

    buttons: CardAction[]

    The buttons of the card.

    facts: Fact[]

    The facts of the card.

    items: ReceiptItem[]

    The items of the card.

    The tap action of the card.

    tax: string

    The tax amount of the receipt.

    title: string

    The title of the card.

    total: string

    The total amount of the receipt.

    vat?: string

    The VAT amount of the receipt.