Class: Pokepay::Request::CreateBill

Inherits:
Request
  • Object
show all
Defined in:
lib/pokepay_partner_ruby_sdk/request/create_bill.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, rest_args = {}) ⇒ CreateBill

Returns a new instance of CreateBill.



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

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

Instance Attribute Details

#response_classObject (readonly)

Returns the value of attribute response_class.



14
15
16
# File 'lib/pokepay_partner_ruby_sdk/request/create_bill.rb', line 14

def response_class
  @response_class
end