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
-
-
Method Detail
-
withOptions
abstract OAuthApplicationServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(String oauthApplicationId)
Returns a raw HTTP response for
get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(String oauthApplicationId, OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(String oauthApplicationId, OAuthApplicationRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(OAuthApplicationRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(String oauthApplicationId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list()
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(OAuthApplicationListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(OAuthApplicationListParams params)
-
list
CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-