Class: Ingenico::Direct::SDK::Domain::AmountBreakdown

Inherits:
Ingenico::Direct::SDK::DataObject show all
Defined in:
lib/ingenico/direct/sdk/domain/amount_breakdown.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Direct::SDK::DataObject

new_from_hash

Instance Attribute Details

#amountLong

Returns the current value of amount.

Returns:

  • (Long)

    the current value of amount



12
13
14
# File 'lib/ingenico/direct/sdk/domain/amount_breakdown.rb', line 12

def amount
  @amount
end

#typeString

Returns the current value of type.

Returns:

  • (String)

    the current value of type



12
13
14
# File 'lib/ingenico/direct/sdk/domain/amount_breakdown.rb', line 12

def type
  @type
end

Instance Method Details

#from_hash(hash) ⇒ Object



24
25
26
27
28
# File 'lib/ingenico/direct/sdk/domain/amount_breakdown.rb', line 24

def from_hash(hash)
  super
  @amount = hash['amount'] if hash.key? 'amount'
  @type = hash['type'] if hash.key? 'type'
end

#to_hHash

Returns:

  • (Hash)


17
18
19
20
21
22
# File 'lib/ingenico/direct/sdk/domain/amount_breakdown.rb', line 17

def to_h
  hash = super
  hash['amount'] = @amount unless @amount.nil?
  hash['type'] = @type unless @type.nil?
  hash
end