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