Interface WireTransferService.WithRawResponse
-
- All Implemented Interfaces:
public interface WireTransferService.WithRawResponseA view of WireTransferService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract HttpResponseFor<WireTransfer>create(WireTransferCreateParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /wire_transfers, but is otherwise the same as WireTransferService.create.abstract HttpResponseFor<WireTransfer>create(WireTransferCreateParams params)Returns a raw HTTP response for post /wire_transfers, but is otherwise the same as WireTransferService.create.abstract HttpResponseFor<WireTransfer>retrieve(WireTransferRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /wire_transfers/{wire_transfer_id}, but is otherwise the same as WireTransferService.retrieve.abstract HttpResponseFor<WireTransfer>retrieve(WireTransferRetrieveParams params)Returns a raw HTTP response for get /wire_transfers/{wire_transfer_id}, but is otherwise the same as WireTransferService.retrieve.abstract HttpResponseFor<WireTransferListPage>list(WireTransferListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /wire_transfers, but is otherwise the same as WireTransferService.list.abstract HttpResponseFor<WireTransferListPage>list(WireTransferListParams params)Returns a raw HTTP response for get /wire_transfers, but is otherwise the same as WireTransferService.list.abstract HttpResponseFor<WireTransferListPage>list()Returns a raw HTTP response for get /wire_transfers, but is otherwise the same as WireTransferService.list.HttpResponseFor<WireTransferListPage>list(RequestOptions requestOptions)Returns a raw HTTP response for get /wire_transfers, but is otherwise the same as WireTransferService.list.abstract HttpResponseFor<WireTransfer>approve(WireTransferApproveParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /wire_transfers/{wire_transfer_id}/approve, but is otherwise the same as WireTransferService.approve.abstract HttpResponseFor<WireTransfer>approve(WireTransferApproveParams params)Returns a raw HTTP response for post /wire_transfers/{wire_transfer_id}/approve, but is otherwise the same as WireTransferService.approve.abstract HttpResponseFor<WireTransfer>cancel(WireTransferCancelParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /wire_transfers/{wire_transfer_id}/cancel, but is otherwise the same as WireTransferService.cancel.abstract HttpResponseFor<WireTransfer>cancel(WireTransferCancelParams params)Returns a raw HTTP response for post /wire_transfers/{wire_transfer_id}/cancel, but is otherwise the same as WireTransferService.cancel.-
-
Method Detail
-
create
abstract HttpResponseFor<WireTransfer> create(WireTransferCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /wire_transfers, but is otherwise the same as WireTransferService.create.
-
create
abstract HttpResponseFor<WireTransfer> create(WireTransferCreateParams params)
Returns a raw HTTP response for
post /wire_transfers, but is otherwise the same as WireTransferService.create.
-
retrieve
abstract HttpResponseFor<WireTransfer> retrieve(WireTransferRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /wire_transfers/{wire_transfer_id}, but is otherwise the same as WireTransferService.retrieve.
-
retrieve
abstract HttpResponseFor<WireTransfer> retrieve(WireTransferRetrieveParams params)
Returns a raw HTTP response for
get /wire_transfers/{wire_transfer_id}, but is otherwise the same as WireTransferService.retrieve.
-
list
abstract HttpResponseFor<WireTransferListPage> list(WireTransferListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /wire_transfers, but is otherwise the same as WireTransferService.list.
-
list
abstract HttpResponseFor<WireTransferListPage> list(WireTransferListParams params)
Returns a raw HTTP response for
get /wire_transfers, but is otherwise the same as WireTransferService.list.
-
list
abstract HttpResponseFor<WireTransferListPage> list()
Returns a raw HTTP response for
get /wire_transfers, but is otherwise the same as WireTransferService.list.
-
list
HttpResponseFor<WireTransferListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /wire_transfers, but is otherwise the same as WireTransferService.list.
-
approve
abstract HttpResponseFor<WireTransfer> approve(WireTransferApproveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/approve, but is otherwise the same as WireTransferService.approve.
-
approve
abstract HttpResponseFor<WireTransfer> approve(WireTransferApproveParams params)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/approve, but is otherwise the same as WireTransferService.approve.
-
cancel
abstract HttpResponseFor<WireTransfer> cancel(WireTransferCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/cancel, but is otherwise the same as WireTransferService.cancel.
-
cancel
abstract HttpResponseFor<WireTransfer> cancel(WireTransferCancelParams params)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/cancel, but is otherwise the same as WireTransferService.cancel.
-
-
-
-