Class: Pokepay::Request::CreatePaymentTransaction
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_payment_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(shop_id, customer_id, private_money_id, amount, rest_args = {}) ⇒ CreatePaymentTransaction
constructor
A new instance of CreatePaymentTransaction.
Constructor Details
#initialize(shop_id, customer_id, private_money_id, amount, rest_args = {}) ⇒ CreatePaymentTransaction
Returns a new instance of CreatePaymentTransaction.
7 8 9 10 11 12 13 14 15 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_payment_transaction.rb', line 7 def initialize(shop_id, customer_id, private_money_id, amount, rest_args = {}) @path = "/transactions" + "/payment" @method = "POST" @body_params = { "shop_id" => shop_id, "customer_id" => customer_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_payment_transaction.rb', line 16 def response_class @response_class end |