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
-
-
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.
-
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(String cardId)
Returns a raw HTTP response for
get /cards/{card_id}, but is otherwise the same as CardService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Card> retrieve(String cardId, CardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Card> retrieve(String cardId, CardRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Card> retrieve(CardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Card> retrieve(CardRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<Card> retrieve(String cardId, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Card> update(String cardId)
Returns a raw HTTP response for
patch /cards/{card_id}, but is otherwise the same as CardService.update.
-
update
@MustBeClosed() HttpResponseFor<Card> update(String cardId, CardUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Card> update(String cardId, CardUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<Card> update(CardUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Card> update(CardUpdateParams params)
-
update
@MustBeClosed() HttpResponseFor<Card> update(String cardId, 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)
-
createDetailsIframe
@MustBeClosed() HttpResponseFor<CardIframeUrl> createDetailsIframe(String cardId)
Returns a raw HTTP response for
post /cards/{card_id}/create_details_iframe, but is otherwise the same as CardService.createDetailsIframe.
-
createDetailsIframe
@MustBeClosed() HttpResponseFor<CardIframeUrl> createDetailsIframe(String cardId, CardCreateDetailsIframeParams params, RequestOptions requestOptions)
-
createDetailsIframe
@MustBeClosed() HttpResponseFor<CardIframeUrl> createDetailsIframe(String cardId, CardCreateDetailsIframeParams params)
-
createDetailsIframe
@MustBeClosed() abstract HttpResponseFor<CardIframeUrl> createDetailsIframe(CardCreateDetailsIframeParams params, RequestOptions requestOptions)
-
createDetailsIframe
@MustBeClosed() HttpResponseFor<CardIframeUrl> createDetailsIframe(CardCreateDetailsIframeParams params)
-
createDetailsIframe
@MustBeClosed() HttpResponseFor<CardIframeUrl> createDetailsIframe(String cardId, RequestOptions requestOptions)
-
details
@MustBeClosed() HttpResponseFor<CardDetails> details(String cardId)
Returns a raw HTTP response for
get /cards/{card_id}/details, but is otherwise the same as CardService.details.
-
details
@MustBeClosed() HttpResponseFor<CardDetails> details(String cardId, CardDetailsParams params, RequestOptions requestOptions)
-
details
@MustBeClosed() HttpResponseFor<CardDetails> details(String cardId, CardDetailsParams params)
-
details
@MustBeClosed() abstract HttpResponseFor<CardDetails> details(CardDetailsParams params, RequestOptions requestOptions)
-
details
@MustBeClosed() HttpResponseFor<CardDetails> details(CardDetailsParams params)
-
details
@MustBeClosed() HttpResponseFor<CardDetails> details(String cardId, RequestOptions requestOptions)
-
updatePin
@MustBeClosed() HttpResponseFor<CardDetails> updatePin(String cardId, CardUpdatePinParams params)
Returns a raw HTTP response for
post /cards/{card_id}/update_pin, but is otherwise the same as CardService.updatePin.
-
updatePin
@MustBeClosed() HttpResponseFor<CardDetails> updatePin(String cardId, CardUpdatePinParams params, RequestOptions requestOptions)
-
updatePin
@MustBeClosed() HttpResponseFor<CardDetails> updatePin(CardUpdatePinParams params)
-
updatePin
@MustBeClosed() abstract HttpResponseFor<CardDetails> updatePin(CardUpdatePinParams params, RequestOptions requestOptions)
-
-
-
-