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