Lager - v5.2.0
    Preparing search index...

    Represents the structure of an order item within an order.

    This interface defines the properties of an order item, including product details and quantity.

    OrderItemType

    interface OrderItemType {
        amount: number;
        article_number: string;
        description: string;
        location: string;
        name: string;
        price: number;
        product_id: number;
        specifiers: string;
        stock: number;
    }
    Index

    Properties

    amount: number

    The quantity of the product ordered.

    article_number

    article_number: string

    The article number of the product.

    description: string

    A brief description of the product.

    location: string

    The storage location of the product within a warehouse or store.

    name: string

    The name of the product.

    price: number

    The selling price of the product.

    product_id: number

    The unique identifier of the product.

    specifiers: string

    Detailed specifications or characteristics of the product.

    stock: number

    The quantity of the product available in stock.