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
-
-
Method Detail
-
aggregateBalances
abstract AggregateBalanceServiceAsync.WithRawResponse aggregateBalances()
-
balances
abstract BalanceServiceAsync.WithRawResponse balances()
-
financialTransactions
abstract FinancialTransactionServiceAsync.WithRawResponse financialTransactions()
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> create(CardCreateParams params)
Returns a raw HTTP response for
post /v1/cards, but is otherwise the same as CardServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> create(CardCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> retrieve(CardRetrieveParams params)
Returns a raw HTTP response for
get /v1/cards/{card_token}, but is otherwise the same as CardServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> retrieve(CardRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> update(CardUpdateParams params)
Returns a raw HTTP response for
patch /v1/cards/{card_token}, but is otherwise the same as CardServiceAsync.update.
-
update
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> update(CardUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list()
Returns a raw HTTP response for
get /v1/cards, but is otherwise the same as CardServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list(RequestOptions requestOptions)
-
convertPhysical
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> convertPhysical(CardConvertPhysicalParams params)
Returns a raw HTTP response for
post /v1/cards/{card_token}/convert_physical, but is otherwise the same as CardServiceAsync.convertPhysical.
-
convertPhysical
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> convertPhysical(CardConvertPhysicalParams params, RequestOptions requestOptions)
-
embed
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> embed(CardEmbedParams params)
Returns a raw HTTP response for
get /v1/embed/card, but is otherwise the same as CardServiceAsync.embed.
-
embed
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<String>> embed(CardEmbedParams params, RequestOptions requestOptions)
-
provision
@MustBeClosed() CompletableFuture<HttpResponseFor<CardProvisionResponse>> provision(CardProvisionParams params)
Returns a raw HTTP response for
post /v1/cards/{card_token}/provision, but is otherwise the same as CardServiceAsync.provision.
-
provision
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<CardProvisionResponse>> provision(CardProvisionParams params, RequestOptions requestOptions)
-
reissue
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> reissue(CardReissueParams params)
Returns a raw HTTP response for
post /v1/cards/{card_token}/reissue, but is otherwise the same as CardServiceAsync.reissue.
-
reissue
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> reissue(CardReissueParams params, RequestOptions requestOptions)
-
renew
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> renew(CardRenewParams params)
Returns a raw HTTP response for
post /v1/cards/{card_token}/renew, but is otherwise the same as CardServiceAsync.renew.
-
renew
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> renew(CardRenewParams params, RequestOptions requestOptions)
-
retrieveSpendLimits
@MustBeClosed() CompletableFuture<HttpResponseFor<CardSpendLimits>> retrieveSpendLimits(CardRetrieveSpendLimitsParams params)
Returns a raw HTTP response for
get /v1/cards/{card_token}/spend_limits, but is otherwise the same as CardServiceAsync.retrieveSpendLimits.
-
retrieveSpendLimits
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<CardSpendLimits>> retrieveSpendLimits(CardRetrieveSpendLimitsParams params, RequestOptions requestOptions)
-
searchByPan
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> searchByPan(CardSearchByPanParams params)
Returns a raw HTTP response for
post /v1/cards/search_by_pan, but is otherwise the same as CardServiceAsync.searchByPan.
-
searchByPan
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> searchByPan(CardSearchByPanParams params, RequestOptions requestOptions)
-
-
-
-