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

    Interface PricePoint

    A single observed price for a product/variant at a point in time. Values are stored in standardized USD so they stay comparable across time and can be converted to the user's currency at display time.

    interface PricePoint {
        t: number;
        usd: number;
    }
    Index

    Properties

    Properties

    t: number

    Epoch ms timestamp of when this price was observed.

    usd: number

    The observed price in USD, rounded to 2 decimals.