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