bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iActivityDoc<T>

    The base document interface for all acitivity types.

    interface iActivityDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        _notificationsHandled?: boolean;
        block: T;
        private?: boolean;
        timestamp: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    _notificationsHandled?: boolean

    Whether or not the notifications have been handled by the indexer or not.

    block: T

    The block number of the activity.

    private?: boolean

    Only for private purposes?

    timestamp: T

    The timestamp of the activity.