@tax1driver/ts-payu
    Preparing search index...

    Interface Product

    interface Product {
        name: string;
        quantity: number;
        unitPrice: number;
        virtual?: boolean;
    }
    Index

    Properties

    name: string

    Name of the product

    Product

    quantity: number

    Quantity

    Product

    unitPrice: number

    Unit price

    Product

    virtual?: boolean

    Product type, which can be virtual or material;

    Product