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

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/currency_conversion_result.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from 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



25
26
27
28
29
30
31
32
33
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 25

def from_hash(hash)
  super
  if hash.has_key? 'result'
    @result = hash['result']
  end
  if hash.has_key? 'resultReason'
    @result_reason = hash['resultReason']
  end
end

#to_hHash

Returns:

  • (Hash)


18
19
20
21
22
23
# File 'lib/onlinepayments/sdk/domain/currency_conversion_result.rb', line 18

def to_h
  hash = super
  hash['result'] = @result unless @result.nil?
  hash['resultReason'] = @result_reason unless @result_reason.nil?
  hash
end