Posos Widgets JavaScript SDK
    Preparing search index...

    Interface Quantity

    A measured amount (or an amount that can potentially be measured).

    interface Quantity {
        code?: string | null;
        system?: string | null;
        unit?: string | null;
        value?: number | null;
    }
    Index

    Properties

    code?: string | null

    A coded representation of the unit (e.g., "mg", "mL").

    system?: string | null

    The system that defines the coded unit (e.g., UCUM: http://unitsofmeasure.org).

    unit?: string | null

    A human-readable form of the unit.

    value?: number | null

    The numerical value of the quantity.