Class: Pokepay::Request::CreateBank
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_bank.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(user_device_id, private_money_id, callback_url, kana, rest_args = {}) ⇒ CreateBank
constructor
A new instance of CreateBank.
Constructor Details
#initialize(user_device_id, private_money_id, callback_url, kana, rest_args = {}) ⇒ CreateBank
Returns a new instance of CreateBank.
7 8 9 10 11 12 13 14 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_bank.rb', line 7 def initialize(user_device_id, private_money_id, callback_url, kana, rest_args = {}) @path = "/user-devices" + "/" + user_device_id + "/banks" @method = "POST" @body_params = { "private_money_id" => private_money_id, "callback_url" => callback_url, "kana" => kana }.merge(rest_args) @response_class = Pokepay::Response::BankRegisteringInfo end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
15 16 17 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_bank.rb', line 15 def response_class @response_class end |