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

    Interface VWRAssetReference

    A document/certificate asset reference for a VWR base product.

    interface VWRAssetReference {
        assetType?:
            | "MSDS"
            | "CERTIFICATE_OF_ANALYSIS"
            | "CERTIFICATE_OF_QUALITY";
        url: string;
        languageLists?: string[];
        batchNumber?: string;
        productName?: string;
        productNumber?: string;
    }
    Index

    Properties

    assetType?: "MSDS" | "CERTIFICATE_OF_ANALYSIS" | "CERTIFICATE_OF_QUALITY"

    Asset category.

    url: string

    Absolute URL to the downloadable asset.

    languageLists?: string[]

    Languages the asset is available in, e.g. ["en_US", "en_CA"].

    batchNumber?: string

    Batch number for certificate-of-analysis assets.

    productName?: string

    Product display name.

    productNumber?: string

    Base product number.