Interface CardServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface CardServiceAsync.WithRawResponseA view of CardServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CardServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<CardListPageAsync>>list()Returns a raw HTTP response for get /models/v4/cards, but is otherwise the same as CardServiceAsync.list.abstract CompletableFuture<HttpResponseFor<CardListPageAsync>>list(CardListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<CardListPageAsync>>list(CardListParams params)CompletableFuture<HttpResponseFor<CardListPageAsync>>list(RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract CardServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
CompletableFuture<HttpResponseFor<CardListPageAsync>> list()
Returns a raw HTTP response for
get /models/v4/cards, but is otherwise the same as CardServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params)
-
list
CompletableFuture<HttpResponseFor<CardListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-