frontend
    Preparing search index...

    Interface OrderItem

    Represents an individual item within an order.

    interface OrderItem {
        id: string;
        name: string;
        price: number;
        quantity: number;
    }
    Index

    Properties

    Properties

    id: string

    Unique order item ID

    name: string

    Name of the item

    price: number

    Price per item

    quantity: number

    Quantity ordered