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

    Interface iMapWithValues<T>

    interface iMapWithValues<T extends NumberType> {
        creator: string;
        defaultValue: string;
        inheritManagerTimelineFrom: T;
        managerTimeline: iManagerTimeline<T>[];
        mapId: string;
        metadata?: iMetadata<T>;
        metadataTimeline: iMapMetadataTimeline<T>[];
        permissions: iMapPermissions<T>;
        updateCriteria: iMapUpdateCriteria<T>;
        updateHistory: iUpdateHistory<T>[];
        valueOptions: iValueOptions;
        values: { [key: string]: iValueStore };
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    creator: string
    defaultValue: string
    inheritManagerTimelineFrom: T
    managerTimeline: iManagerTimeline<T>[]
    mapId: string
    metadata?: iMetadata<T>

    The fetched metadata for the map (if any).

    metadataTimeline: iMapMetadataTimeline<T>[]
    permissions: iMapPermissions<T>
    updateCriteria: iMapUpdateCriteria<T>
    updateHistory: iUpdateHistory<T>[]

    The update history for the map. Maps are maintained through blockchain transactions.

    valueOptions: iValueOptions
    values: { [key: string]: iValueStore }

    The (key, value) pairs for the maps that are set.