Class: OnlinePayments::SDK::Domain::CurrencyConversionResult
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::CurrencyConversionResult
- Defined in:
- lib/onlinepayments/sdk/domain/currency_conversion_result.rb
Instance Attribute Summary collapse
-
#result ⇒ String
The current value of result.
-
#result_reason ⇒ String
The current value of result_reason.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#result ⇒ String
Returns the current value of result.
11 12 13 |
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 11 def result @result end |
#result_reason ⇒ String
Returns the current value of result_reason.
11 12 13 |
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 11 def result_reason @result_reason end |
Instance Method Details
#from_hash(hash) ⇒ Object
23 24 25 26 27 |
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 23 def from_hash(hash) super @result = hash['result'] if hash.key? 'result' @result_reason = hash['resultReason'] if hash.key? 'resultReason' end |
#to_h ⇒ Hash
16 17 18 19 20 21 |
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 16 def to_h hash = super hash['result'] = @result unless @result.nil? hash['resultReason'] = @result_reason unless @result_reason.nil? hash end |