Class: Ingenico::Direct::SDK::Domain::AmountOfMoney
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::AmountOfMoney
- Defined in:
- lib/ingenico/direct/sdk/domain/amount_of_money.rb
Instance Attribute Summary collapse
-
#amount ⇒ Long
The current value of amount.
-
#currency_code ⇒ String
The current value of currency_code.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#amount ⇒ Long
Returns the current value of amount.
12 13 14 |
# File 'lib/ingenico/direct/sdk/domain/amount_of_money.rb', line 12 def amount @amount end |
#currency_code ⇒ String
Returns the current value of currency_code.
12 13 14 |
# File 'lib/ingenico/direct/sdk/domain/amount_of_money.rb', line 12 def currency_code @currency_code end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 |
# File 'lib/ingenico/direct/sdk/domain/amount_of_money.rb', line 24 def from_hash(hash) super @amount = hash['amount'] if hash.key? 'amount' @currency_code = hash['currencyCode'] if hash.key? 'currencyCode' end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/ingenico/direct/sdk/domain/amount_of_money.rb', line 17 def to_h hash = super hash['amount'] = @amount unless @amount.nil? hash['currencyCode'] = @currency_code unless @currency_code.nil? hash end |