class Ingenico::Direct::SDK::Domain::RefundsResponse
@attr [Array<Ingenico::Direct::SDK::Domain::RefundResponse>] refunds
Attributes
refunds[RW]
Public Instance Methods
from_hash(hash)
click to toggle source
Calls superclass method
Ingenico::Direct::SDK::DataObject#from_hash
# File lib/ingenico/direct/sdk/domain/refunds_response.rb, line 22 def from_hash(hash) super if hash.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::Direct::SDK::Domain::RefundResponse.new_from_hash(e) end end end
to_h()
click to toggle source
@return (Hash)
Calls superclass method
Ingenico::Direct::SDK::DataObject#to_h
# File lib/ingenico/direct/sdk/domain/refunds_response.rb, line 16 def to_h hash = super hash['refunds'] = @refunds.collect(&:to_h) if @refunds hash end