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

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
MMNEPVFCICPMFPCPTTAAATR