Class: Pokepay::Request::CreateShopV2

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

Instance Attribute Summary collapse

Attributes inherited from Request

#body_params, #method, #path

Instance Method Summary collapse

Constructor Details

#initialize(name, rest_args = {}) ⇒ CreateShopV2

Returns a new instance of CreateShopV2.



7
8
9
10
11
12
# File 'lib/pokepay_partner_ruby_sdk/request/create_shop_v2.rb', line 7

def initialize(name, rest_args = {})
  @path = "/shops-v2"
  @method = "POST"
  @body_params = { "name" => name }.merge(rest_args)
  @response_class = Pokepay::Response::ShopWithAccounts
end

Instance Attribute Details

#response_classObject (readonly)

Returns the value of attribute response_class.



13
14
15
# File 'lib/pokepay_partner_ruby_sdk/request/create_shop_v2.rb', line 13

def response_class
  @response_class
end