ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface ChemsaversProductObject

    Represents a product from the Chemsavers catalog.

    Contains all product details including:

    • Basic information (name, description, ID)
    • Pricing information (retail, sale, MAP prices)
    • Inventory details
    • Categorization and metadata
    • Product identifiers (SKU, UPC, CAS)
    interface ChemsaversProductObject {
        CAS?: string;
        calculatedPrice: number;
        categories: string[];
        description: string;
        hasOptions: boolean;
        id: string;
        images: string[];
        inventoryLevel: number;
        inventoryTracking: string;
        mapPrice: number;
        metaDescription: string;
        metaKeywords: string[];
        name: string;
        price: number;
        product_id: number;
        retailPrice: number;
        salePrice: number;
        sku: string;
        sortOrder: number;
        upc: string;
        url: string;
        variants?: ChemsaversProductVariant[];
    }
    Index

    Properties

    CAS?: string

    Chemical Abstracts Service registry number

    calculatedPrice: number

    Final calculated price after any adjustments

    categories: string[]

    List of categories the product belongs to

    description: string

    Full product description

    hasOptions: boolean

    Whether the product has variant options

    id: string

    Unique identifier for the product

    images: string[]

    Array of product image URLs

    inventoryLevel: number

    Current stock level

    inventoryTracking: string

    Type of inventory tracking used

    mapPrice: number

    Minimum Advertised Price

    metaDescription: string

    SEO meta description

    metaKeywords: string[]

    SEO keywords

    name: string

    Product name/title

    price: number

    Current price

    product_id: number

    Internal product ID number

    retailPrice: number

    Original retail price

    salePrice: number

    Discounted sale price

    sku: string

    Stock Keeping Unit identifier

    sortOrder: number

    Display order priority

    upc: string

    Universal Product Code

    url: string

    Product page URL

    Array of variant products