ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface VWRSearchProduct

    A single product entry in a VWR search response (products[]). The baseProduct id is used to fetch detail, asset, and substance data.

    interface VWRSearchProduct {
        code: string;
        baseProduct: string;
        displayName?: string;
        name?: string;
        description?: string;
        uomSpecificPrices?: VWRUomSpecificPrice[];
        images?: VWRImage[];
        stock?: VWRSearchStock;
        vwrCatalogNumber?: string;
        certificatesAvailable?: boolean;
        msdsAvailable?: boolean;
        discontinued?: boolean;
        restricted?: boolean;
    }
    Index

    Properties

    code: string

    Product/variant code, e.g. "NA3626344". Matches an ordertable productRows[].code.

    baseProduct: string

    Base product id used for detail/asset/substance lookups, e.g. "11805968".

    displayName?: string

    Preferred display title.

    name?: string

    Fallback name when displayName is absent.

    description?: string

    Long description.

    uomSpecificPrices?: VWRUomSpecificPrice[]

    Per-UOM price entries; the first is used as the representative price.

    images?: VWRImage[]

    Inline image references.

    Base-product stock summary.

    vwrCatalogNumber?: string

    VWR catalog number, e.g. "80722-392".

    certificatesAvailable?: boolean

    Whether certificates (COA) are available.

    msdsAvailable?: boolean

    Whether an SDS/MSDS is available.

    discontinued?: boolean

    Whether the product is discontinued.

    restricted?: boolean

    Whether the product is restricted (e.g. requires a license); excluded from results.