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

    Represents an item in a receipt card.

    interface ReceiptItem {
        image: CardImage;
        price: string;
        quantity: number;
        subtitle?: string;
        tap?: CardAction;
        text?: string;
        title: string;
    }
    Index

    Properties

    image: CardImage

    The image of the item.

    price: string

    The price of the item.

    quantity: number

    The quantity of the item.

    subtitle?: string

    The subtitle of the item.

    The tap action of the item.

    text?: string

    The text of the item.

    title: string

    The title of the item.