class Ingenico::Direct::SDK::Domain::CapturesResponse

@attr [Array<Ingenico::Direct::SDK::Domain::Capture>] captures

Attributes

captures[RW]

Public Instance Methods

from_hash(hash) click to toggle source
# File lib/ingenico/direct/sdk/domain/captures_response.rb, line 22
def from_hash(hash)
  super
  if hash.key? 'captures'
    raise TypeError, "value '%s' is not an Array" % [hash['captures']] unless hash['captures'].is_a? Array
    @captures = []
    hash['captures'].each do |e|
      @captures << Ingenico::Direct::SDK::Domain::Capture.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/captures_response.rb, line 16
def to_h
  hash = super
  hash['captures'] = @captures.collect(&:to_h) if @captures
  hash
end