Interface TransactionService.WithRawResponse
-
- All Implemented Interfaces:
public interface TransactionService.WithRawResponseA view of TransactionService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<Transaction>retrieve(TransactionRetrieveParams params)Returns a raw HTTP response for get /transactions/{transaction_id}, but is otherwise the same as TransactionService.retrieve.abstract HttpResponseFor<Transaction>retrieve(TransactionRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<TransactionListPage>list()Returns a raw HTTP response for get /transactions, but is otherwise the same as TransactionService.list.abstract HttpResponseFor<TransactionListPage>list(TransactionListParams params, RequestOptions requestOptions)HttpResponseFor<TransactionListPage>list(TransactionListParams params)HttpResponseFor<TransactionListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<Transaction> retrieve(TransactionRetrieveParams params)
Returns a raw HTTP response for
get /transactions/{transaction_id}, but is otherwise the same as TransactionService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Transaction> retrieve(TransactionRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<TransactionListPage> list()
Returns a raw HTTP response for
get /transactions, but is otherwise the same as TransactionService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<TransactionListPage> list(TransactionListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<TransactionListPage> list(TransactionListParams params)
-
list
@MustBeClosed() HttpResponseFor<TransactionListPage> list(RequestOptions requestOptions)
-
-
-
-