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 abstract CompletableFuture<HttpResponseFor<OAuthApplication>>retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)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)Returns a raw HTTP response for get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(OAuthApplicationListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(OAuthApplicationListParams params)Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list()Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>>list(RequestOptions requestOptions)Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.-
-
Method Detail
-
retrieve
abstract CompletableFuture<HttpResponseFor<OAuthApplication>> retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationServiceAsync.retrieve.
-
retrieve
abstract 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.
-
list
abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(OAuthApplicationListParams params, RequestOptions requestOptions)
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)
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list()
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<OAuthApplicationListPageAsync>> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationServiceAsync.list.
-
-
-
-