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 HttpResponseFor<Card>create(CardCreateParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /cards, but is otherwise the same as CardService.create.abstract HttpResponseFor<Card>create(CardCreateParams params)Returns a raw HTTP response for post /cards, but is otherwise the same as CardService.create.abstract HttpResponseFor<Card>retrieve(CardRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /cards/{card_id}, but is otherwise the same as CardService.retrieve.abstract HttpResponseFor<Card>retrieve(CardRetrieveParams params)Returns a raw HTTP response for get /cards/{card_id}, but is otherwise the same as CardService.retrieve.abstract HttpResponseFor<Card>update(CardUpdateParams params, RequestOptions requestOptions)Returns a raw HTTP response for patch /cards/{card_id}, but is otherwise the same as CardService.update.abstract HttpResponseFor<Card>update(CardUpdateParams params)Returns a raw HTTP response for patch /cards/{card_id}, but is otherwise the same as CardService.update.abstract HttpResponseFor<CardListPage>list(CardListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /cards, but is otherwise the same as CardService.list.abstract HttpResponseFor<CardListPage>list(CardListParams params)Returns a raw HTTP response for get /cards, but is otherwise the same as CardService.list.abstract HttpResponseFor<CardListPage>list()Returns a raw HTTP response for get /cards, but is otherwise the same as CardService.list.HttpResponseFor<CardListPage>list(RequestOptions requestOptions)Returns a raw HTTP response for get /cards, but is otherwise the same as CardService.list.abstract HttpResponseFor<CardDetails>details(CardDetailsParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /cards/{card_id}/details, but is otherwise the same as CardService.details.abstract HttpResponseFor<CardDetails>details(CardDetailsParams params)Returns a raw HTTP response for get /cards/{card_id}/details, but is otherwise the same as CardService.details.-
-
Method Detail
-
create
abstract HttpResponseFor<Card> create(CardCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /cards, but is otherwise the same as CardService.create.
-
create
abstract HttpResponseFor<Card> create(CardCreateParams params)
Returns a raw HTTP response for
post /cards, but is otherwise the same as CardService.create.
-
retrieve
abstract HttpResponseFor<Card> retrieve(CardRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /cards/{card_id}, but is otherwise the same as CardService.retrieve.
-
retrieve
abstract HttpResponseFor<Card> retrieve(CardRetrieveParams params)
Returns a raw HTTP response for
get /cards/{card_id}, but is otherwise the same as CardService.retrieve.
-
update
abstract HttpResponseFor<Card> update(CardUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
patch /cards/{card_id}, but is otherwise the same as CardService.update.
-
update
abstract HttpResponseFor<Card> update(CardUpdateParams params)
Returns a raw HTTP response for
patch /cards/{card_id}, but is otherwise the same as CardService.update.
-
list
abstract HttpResponseFor<CardListPage> list(CardListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /cards, but is otherwise the same as CardService.list.
-
list
abstract HttpResponseFor<CardListPage> list(CardListParams params)
Returns a raw HTTP response for
get /cards, but is otherwise the same as CardService.list.
-
list
abstract HttpResponseFor<CardListPage> list()
Returns a raw HTTP response for
get /cards, but is otherwise the same as CardService.list.
-
list
HttpResponseFor<CardListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /cards, but is otherwise the same as CardService.list.
-
details
abstract HttpResponseFor<CardDetails> details(CardDetailsParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /cards/{card_id}/details, but is otherwise the same as CardService.details.
-
details
abstract HttpResponseFor<CardDetails> details(CardDetailsParams params)
Returns a raw HTTP response for
get /cards/{card_id}/details, but is otherwise the same as CardService.details.
-
-
-
-