Package com.increase.api.services.async
Interface OAuthApplicationServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface OAuthApplicationServiceAsync.WithRawResponseA view of OAuthApplicationServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<OAuthApplication>>retrieve(OAuthApplicationRetrieveParams params)Returns a raw HTTP response for get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<OAuthApplication>>retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list()Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(OAuthApplicationListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(OAuthApplicationListParams params)CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(OAuthApplicationRetrieveParams params)
Returns a raw HTTP response for
get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list()
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(OAuthApplicationListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(OAuthApplicationListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-