# VeloPayments::TransferRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **to_source_account_id** | **String** | The 'to' source account id, which will be credited | | | **amount** | **Integer** | Amount to transfer, in minor units | | | **currency** | **String** | | | ## Example ```ruby require 'velopayments' instance = VeloPayments::TransferRequest.new( to_source_account_id: null, amount: null, currency: USD ) ```