Interface UserService
-
- All Implemented Interfaces:
public interface UserService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceUserService.WithRawResponseA view of UserService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract UserService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. Userretrieve(UserRetrieveParams params)Get a user object by its id abstract Userretrieve(UserRetrieveParams params, RequestOptions requestOptions)UserListPagelist()List out all users. abstract UserListPagelist(UserListParams params, RequestOptions requestOptions)UserListPagelist(UserListParams params)UserListPagelist(RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract UserService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
retrieve
User retrieve(UserRetrieveParams params)
Get a user object by its id
-
retrieve
abstract User retrieve(UserRetrieveParams params, RequestOptions requestOptions)
-
list
UserListPage list()
List out all users. The users are sorted by creation date, with the most recently-created users coming first
-
list
abstract UserListPage list(UserListParams params, RequestOptions requestOptions)
-
list
UserListPage list(UserListParams params)
-
list
UserListPage list(RequestOptions requestOptions)
-
-
-
-