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

    Interface iDynamicStoreDoc<T>

    DynamicStoreDoc represents an on-chain dynamic store document from the API indexer.

    interface iDynamicStoreDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        createdBy: string;
        customData?: string;
        defaultValue: boolean;
        globalEnabled: boolean;
        storeId: T;
        uri?: string;
    }

    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)

    createdBy: string
    customData?: string
    defaultValue: boolean
    globalEnabled: boolean
    storeId: T
    uri?: string