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

    Interface iGetDynamicDataStoreValuesPaginatedSuccessResponse<Q, T>

    interface iGetDynamicDataStoreValuesPaginatedSuccessResponse<
        Q extends DynamicDataHandlerType,
        T extends NumberType,
    > {
        lookupValues: {
            inStore: boolean;
            key: string;
            lookupType?: "username" | "id";
        }[];
        pagination: PaginationInfo;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    lookupValues: { inStore: boolean; key: string; lookupType?: "username" | "id" }[]

    The lookup values for the dynamic data store

    Type Declaration

    • inStore: boolean

      Whether the lookup value is in the store

    • key: string

      The key of the lookup value

    • OptionallookupType?: "username" | "id"

      The lookup type of the lookup value

    pagination: PaginationInfo