Posos Widgets JavaScript SDK
    Preparing search index...

    Interface Duration

    A measured duration.

    interface Duration {
        code?: "a" | "s" | "min" | "h" | "d" | "wk" | "mo" | null;
        system?: string | null;
        unit?: string | null;
        value?: number | null;
    }
    Index

    Properties

    code?: "a" | "s" | "min" | "h" | "d" | "wk" | "mo" | null

    A coded representation of the duration (e.g., "h, "d").

    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.