Class: OnlinePayments::SDK::Domain::CurrencyConversionResult

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/currency_conversion_result.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#resultString

Returns the current value of result.

Returns:

  • (String)

    the current value of result



11
12
13
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 11

def result
  @result
end

#result_reasonString

Returns the current value of result_reason.

Returns:

  • (String)

    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_hHash

Returns:

  • (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