Class: Pokepay::Request::CreateShop
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_shop.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_name, rest_args = {}) ⇒ CreateShop
constructor
A new instance of CreateShop.
Constructor Details
#initialize(shop_name, rest_args = {}) ⇒ CreateShop
Returns a new instance of CreateShop.
7 8 9 10 11 12 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_shop.rb', line 7 def initialize(shop_name, rest_args = {}) @path = "/shops" @method = "POST" @body_params = { "shop_name" => shop_name }.merge(rest_args) @response_class = Pokepay::Response::User 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_shop.rb', line 13 def response_class @response_class end |