Class: Pokepay::Request::CreateUserAccount
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_user_account.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_id, private_money_id, rest_args = {}) ⇒ CreateUserAccount
constructor
A new instance of CreateUserAccount.
Constructor Details
#initialize(user_id, private_money_id, rest_args = {}) ⇒ CreateUserAccount
Returns a new instance of CreateUserAccount.
7 8 9 10 11 12 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_user_account.rb', line 7 def initialize(user_id, private_money_id, rest_args = {}) @path = "/users" + "/" + user_id + "/accounts" @method = "POST" @body_params = { "private_money_id" => private_money_id }.merge(rest_args) @response_class = Pokepay::Response::AccountDetail end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
13 14 15 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_user_account.rb', line 13 def response_class @response_class end |