Class: Ingenico::Connect::SDK::Domain::Refund::RefundsResponse
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Refund::RefundsResponse
- Defined in:
- lib/ingenico/connect/sdk/domain/refund/refunds_response.rb
Instance Attribute Summary collapse
-
#refunds ⇒ Array<Ingenico::Connect::SDK::Domain::Refund::RefundResult>
The current value of refunds.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#refunds ⇒ Array<Ingenico::Connect::SDK::Domain::Refund::RefundResult>
Returns the current value of refunds.
14 15 16 |
# File 'lib/ingenico/connect/sdk/domain/refund/refunds_response.rb', line 14 def refunds @refunds end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 32 33 34 |
# File 'lib/ingenico/connect/sdk/domain/refund/refunds_response.rb', line 25 def from_hash(hash) super if hash.has_key? 'refunds' raise TypeError, "value '%s' is not an Array" % [hash['refunds']] unless hash['refunds'].is_a? Array @refunds = [] hash['refunds'].each do |e| @refunds << Ingenico::Connect::SDK::Domain::Refund::RefundResult.new_from_hash(e) end end end |
#to_h ⇒ Hash
19 20 21 22 23 |
# File 'lib/ingenico/connect/sdk/domain/refund/refunds_response.rb', line 19 def to_h hash = super hash['refunds'] = @refunds.collect{|val| val.to_h} unless @refunds.nil? hash end |