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