Class: Pokepay::Request::CreateExchangeTransaction

Inherits:
Request
  • Object
show all
Defined in:
lib/pokepay_partner_ruby_sdk/request/create_exchange_transaction.rb

Instance Attribute Summary collapse

Attributes inherited from Request

#body_params, #method, #path

Instance Method Summary collapse

Constructor Details

#initialize(user_id, sender_private_money_id, receiver_private_money_id, amount, rest_args = {}) ⇒ CreateExchangeTransaction

Returns a new instance of CreateExchangeTransaction.



7
8
9
10
11
12
13
14
15
# File 'lib/pokepay_partner_ruby_sdk/request/create_exchange_transaction.rb', line 7

def initialize(user_id, sender_private_money_id, receiver_private_money_id, amount, rest_args = {})
  @path = "/transactions" + "/exchange"
  @method = "POST"
  @body_params = { "user_id" => user_id,
                   "sender_private_money_id" => sender_private_money_id,
                   "receiver_private_money_id" => receiver_private_money_id,
                   "amount" => amount }.merge(rest_args)
  @response_class = Pokepay::Response::TransactionDetail
end

Instance Attribute Details

#response_classObject (readonly)

Returns the value of attribute response_class.



16
17
18
# File 'lib/pokepay_partner_ruby_sdk/request/create_exchange_transaction.rb', line 16

def response_class
  @response_class
end