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