ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface ProductDetails

    Basic product information structure. Used for simplified product representations.

    const details: ProductDetails = {
    name: "Sodium Chloride",
    description: "ACS grade sodium chloride",
    price: 19.99,
    quantity: 500
    };
    interface ProductDetails {
        name: string;
        description: string;
        price: number;
        quantity: number;
    }
    Index

    Properties

    name: string

    Display name of the product

    "Sodium Chloride"
    
    description: string

    Detailed product description

    "ACS grade sodium chloride"
    
    price: number

    Current price of the product

    19.99
    
    quantity: number

    Available quantity in stock

    500