queryBannedUsers
fun queryBannedUsers(filter: FilterObject, sort: QuerySorter<BannedUsersSort> = QuerySortByField.ascByName("created_at"), offset: Int? = null, limit: Int? = null, createdAtAfter: Date? = null, createdAtAfterOrEqual: Date? = null, createdAtBefore: Date? = null, createdAtBeforeOrEqual: Date? = null): Call<List<BannedUser>>
Queries the banned users matching the provided filters.
Parameters
filter
The filter object to apply to the query.
sort
The sorter object to apply to the query.
offset
The offset to start from.
limit
The maximum number of banned users to return.
createdAtAfter
The date after which the ban was created.
createdAtAfterOrEqual
The date after (or at) which the ban was created.
createdAtBefore
The date before which the ban was created.
createdAtBeforeOrEqual
The date before (or at) which the ban was created.