Lager - v5.2.0
    Preparing search index...

    Represents the structure of a product entity within the application.

    This interface is utilized for type-checking and ensuring consistency in product data handling.

    Product

    interface Product {
        api_key: string;
        article_number: string;
        description: string;
        id: number;
        location: string;
        name: string;
        price: number;
        specifiers: string;
        stock: number;
    }
    Index

    Properties

    api_key: string

    An API key associated with the product for identification or integration purposes.

    article_number

    article_number: string

    Article number of the product, serving as an additional identifier.

    description: string

    A brief description of the product.

    id: number

    Unique identifier for 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.

    specifiers: string

    Detailed specifications or characteristics of the product.

    stock: number

    The quantity of the product available in stock.