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