Class: Pokepay::Request::CreateTransferTransaction
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_transfer_transaction.rb
Instance Attribute Summary collapse
-
#response_class ⇒ Object
readonly
Returns the value of attribute response_class.
Attributes inherited from Request
Instance Method Summary collapse
-
#initialize(sender_id, receiver_id, private_money_id, amount, rest_args = {}) ⇒ CreateTransferTransaction
constructor
A new instance of CreateTransferTransaction.
Constructor Details
#initialize(sender_id, receiver_id, private_money_id, amount, rest_args = {}) ⇒ CreateTransferTransaction
Returns a new instance of CreateTransferTransaction.
7 8 9 10 11 12 13 14 15 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_transfer_transaction.rb', line 7 def initialize(sender_id, receiver_id, private_money_id, amount, rest_args = {}) @path = "/transactions" + "/transfer" @method = "POST" @body_params = { "sender_id" => sender_id, "receiver_id" => receiver_id, "private_money_id" => private_money_id, "amount" => amount }.merge(rest_args) @response_class = Pokepay::Response::TransactionDetail end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
16 17 18 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_transfer_transaction.rb', line 16 def response_class @response_class end |