Class: Pokepay::Request::CreateCpmTransaction
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_cpm_transaction.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(cpm_token, shop_id, amount, rest_args = {}) ⇒ CreateCpmTransaction
constructor
A new instance of CreateCpmTransaction.
Constructor Details
#initialize(cpm_token, shop_id, amount, rest_args = {}) ⇒ CreateCpmTransaction
Returns a new instance of CreateCpmTransaction.
7 8 9 10 11 12 13 14 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_cpm_transaction.rb', line 7 def initialize(cpm_token, shop_id, amount, rest_args = {}) @path = "/transactions" + "/cpm" @method = "POST" @body_params = { "cpm_token" => cpm_token, "shop_id" => shop_id, "amount" => amount }.merge(rest_args) @response_class = Pokepay::Response::TransactionDetail end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
15 16 17 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_cpm_transaction.rb', line 15 def response_class @response_class end |