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

    Interface iBaseStats<T>

    interface iBaseStats<T extends NumberType> {
        _docId: string;
        _id?: string;
        dailyVolume: iCosmosCoin<T>[];
        lastUpdatedAt: T;
        monthlyVolume: iCosmosCoin<T>[];
        overallVolume: iCosmosCoin<T>[];
        weeklyVolume: iCosmosCoin<T>[];
        yearlyVolume: iCosmosCoin<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)

    dailyVolume: iCosmosCoin<T>[]

    The daily volume of the collection

    lastUpdatedAt: T

    Last set timestamp

    monthlyVolume: iCosmosCoin<T>[]

    The monthly volume of the collection

    overallVolume: iCosmosCoin<T>[]

    The overall volume of the collection

    weeklyVolume: iCosmosCoin<T>[]

    The weekly volume of the collection

    yearlyVolume: iCosmosCoin<T>[]

    The yearly volume of the collection