Interface InboundWireTransferService.WithRawResponse
-
- All Implemented Interfaces:
public interface InboundWireTransferService.WithRawResponseA view of InboundWireTransferService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InboundWireTransferService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<InboundWireTransfer> retrieve(String inboundWireTransferId)
Returns a raw HTTP response for
get /inbound_wire_transfers/{inbound_wire_transfer_id}, but is otherwise the same as InboundWireTransferService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<InboundWireTransfer> retrieve(String inboundWireTransferId, InboundWireTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<InboundWireTransfer> retrieve(String inboundWireTransferId, InboundWireTransferRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<InboundWireTransfer> retrieve(InboundWireTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<InboundWireTransfer> retrieve(InboundWireTransferRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<InboundWireTransfer> retrieve(String inboundWireTransferId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InboundWireTransferListPage> list()
Returns a raw HTTP response for
get /inbound_wire_transfers, but is otherwise the same as InboundWireTransferService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<InboundWireTransferListPage> list(InboundWireTransferListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InboundWireTransferListPage> list(InboundWireTransferListParams params)
-
list
@MustBeClosed() HttpResponseFor<InboundWireTransferListPage> list(RequestOptions requestOptions)
-
reverse
@MustBeClosed() HttpResponseFor<InboundWireTransfer> reverse(String inboundWireTransferId, InboundWireTransferReverseParams params)
Returns a raw HTTP response for
post /inbound_wire_transfers/{inbound_wire_transfer_id}/reverse, but is otherwise the same as InboundWireTransferService.reverse.
-
reverse
@MustBeClosed() HttpResponseFor<InboundWireTransfer> reverse(String inboundWireTransferId, InboundWireTransferReverseParams params, RequestOptions requestOptions)
-
reverse
@MustBeClosed() HttpResponseFor<InboundWireTransfer> reverse(InboundWireTransferReverseParams params)
-
reverse
@MustBeClosed() abstract HttpResponseFor<InboundWireTransfer> reverse(InboundWireTransferReverseParams params, RequestOptions requestOptions)
-
-
-
-