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