Class: Nihaopay::Transactions::Release
- Defined in:
- lib/nihaopay/transactions/release.rb
Constant Summary
Constants included from Api
Api::LIVE_HOST, Api::TEST_HOST, Api::VERSION
Instance Attribute Summary collapse
-
#release_transaction_id ⇒ Object
Returns the value of attribute release_transaction_id.
-
#released ⇒ Object
Returns the value of attribute released.
Attributes inherited from Base
#amount, #captured, #currency, #note, #reference, #status, #time, #token, #transaction_id, #type
Class Method Summary collapse
- .request_url(transaction_id) ⇒ Object
- .response_keys_map ⇒ Object
- .start(transaction_id, options = {}) ⇒ Object
- .valid_attributes ⇒ Object
Methods inherited from Base
build, build_from_response!, #cancel, #capture, #initialize, #partial_capture, #partial_refund, #refund, #release, request_body, request_headers
Methods included from Queryable
Methods included from Api
Constructor Details
This class inherits a constructor from Nihaopay::Transactions::Base
Instance Attribute Details
#release_transaction_id ⇒ Object
Returns the value of attribute release_transaction_id.
4 5 6 |
# File 'lib/nihaopay/transactions/release.rb', line 4 def release_transaction_id @release_transaction_id end |
#released ⇒ Object
Returns the value of attribute released.
4 5 6 |
# File 'lib/nihaopay/transactions/release.rb', line 4 def released @released end |
Class Method Details
.request_url(transaction_id) ⇒ Object
14 15 16 |
# File 'lib/nihaopay/transactions/release.rb', line 14 def request_url(transaction_id) "#{base_url}/transactions/#{transaction_id}/release" end |
.response_keys_map ⇒ Object
22 23 24 |
# File 'lib/nihaopay/transactions/release.rb', line 22 def response_keys_map { id: :transaction_id, transaction_id: :release_transaction_id } end |
.start(transaction_id, options = {}) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/nihaopay/transactions/release.rb', line 7 def start(transaction_id, = {}) @token = .delete(:token) url = request_url(transaction_id) response = HTTParty.post(url, headers: request_headers, body: request_body) build_from_response!(response) end |
.valid_attributes ⇒ Object
18 19 20 |
# File 'lib/nihaopay/transactions/release.rb', line 18 def valid_attributes i(transaction_id status released release_transaction_id) end |