interface ApplicationUserListQueryParams {
    limit?: number;
    metaDataKeyFilter?: string;
    metaDataValuesFilter?: string[];
    nicknameStartsWithFilter?: string;
    userIdsFilter?: string[];
}

Hierarchy

  • BaseListQueryParams
    • ApplicationUserListQueryParams

Properties

limit?: number

The maximum number of data per queried page.

metaDataKeyFilter?: string

User meta data key filter. User list containing only and exactly the passed User meta data will be returned.

metaDataValuesFilter?: string[]

User meta data values filter. User list containing only and exactly the passed User meta data will be returned.

nicknameStartsWithFilter?: string

A filter to return users whose nicknames start with the specified string.

userIdsFilter?: string[]

User IDs filter. User list containing the passed User IDs will be returned.