Class: Pokepay::Request::CreateCashtray

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

Instance Attribute Summary collapse

Attributes inherited from Request

#body_params, #method, #path

Instance Method Summary collapse

Constructor Details

#initialize(private_money_id, shop_id, amount, rest_args = {}) ⇒ CreateCashtray

Returns a new instance of CreateCashtray.



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

def initialize(private_money_id, shop_id, amount, rest_args = {})
  @path = "/cashtrays"
  @method = "POST"
  @body_params = { "private_money_id" => private_money_id,
                   "shop_id" => shop_id,
                   "amount" => amount }.merge(rest_args)
  @response_class = Pokepay::Response::Cashtray
end

Instance Attribute Details

#response_classObject (readonly)

Returns the value of attribute response_class.



15
16
17
# File 'lib/pokepay_partner_ruby_sdk/request/create_cashtray.rb', line 15

def response_class
  @response_class
end