public static interface UsersService.ListRequest extends Request<UsersService.ListRequest,UsersService.ListResponse>
Modifier and Type | Method and Description |
---|---|
UsersService.ListRequest |
caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the
search parameter should be performed taking case into
account. |
UsersService.ListRequest |
max(BigInteger max)
Sets the maximum number of users to return.
|
UsersService.ListRequest |
max(Integer max)
Sets the maximum number of users to return.
|
UsersService.ListRequest |
max(Long max)
Sets the maximum number of users to return.
|
UsersService.ListRequest |
search(String search)
A query string used to restrict the returned users.
|
UsersService.ListRequest caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the search
parameter should be performed taking case into
account. The default value is true
, which means that case is taken into account. If you want to search
ignoring case set it to false
.
UsersService.ListRequest max(Integer max)
Sets the maximum number of users to return. If not specified all the users are returned.
UsersService.ListRequest max(Long max)
Sets the maximum number of users to return. If not specified all the users are returned.
UsersService.ListRequest max(BigInteger max)
Sets the maximum number of users to return. If not specified all the users are returned.
UsersService.ListRequest search(String search)
A query string used to restrict the returned users.
Copyright © 2016. All rights reserved.