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