Interface UserService.WithRawResponse
-
- All Implemented Interfaces:
public interface UserService.WithRawResponseA view of UserService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<User>retrieve(UserRetrieveParams params)Returns a raw HTTP response for get /v1/user/{user_id}, but is otherwise the same as UserService.retrieve.abstract HttpResponseFor<User>retrieve(UserRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<UserListPage>list()Returns a raw HTTP response for get /v1/user, but is otherwise the same as UserService.list.abstract HttpResponseFor<UserListPage>list(UserListParams params, RequestOptions requestOptions)HttpResponseFor<UserListPage>list(UserListParams params)HttpResponseFor<UserListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<User> retrieve(UserRetrieveParams params)
Returns a raw HTTP response for
get /v1/user/{user_id}, but is otherwise the same as UserService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<User> retrieve(UserRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<UserListPage> list()
Returns a raw HTTP response for
get /v1/user, but is otherwise the same as UserService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<UserListPage> list(UserListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<UserListPage> list(UserListParams params)
-
list
@MustBeClosed() HttpResponseFor<UserListPage> list(RequestOptions requestOptions)
-
-
-
-