ART Framework API Docs
    Preparing search index...

    Interface ObservationFilter

    Options for filtering observations.

    ObservationFilter

    interface ObservationFilter {
        afterTimestamp?: number;
        beforeTimestamp?: number;
        types?: ObservationType[];
    }
    Index

    Properties

    afterTimestamp?: number

    Retrieve observations recorded after this Unix timestamp (milliseconds).

    beforeTimestamp?: number

    Retrieve observations recorded before this Unix timestamp (milliseconds).

    types?: ObservationType[]

    An array of ObservationType enums to filter by. If provided, only observations matching these types are returned.