Class: Worldline::Connect::SDK::V1::Domain::CapturesResponse

Inherits:
Domain::DataObject show all
Defined in:
lib/worldline/connect/sdk/v1/domain/captures_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#capturesArray<Worldline::Connect::SDK::V1::Domain::Capture>

Returns the current value of captures.

Returns:



14
15
16
# File 'lib/worldline/connect/sdk/v1/domain/captures_response.rb', line 14

def captures
  @captures
end

Instance Method Details

#from_hash(hash) ⇒ Object



25
26
27
28
29
30
31
32
33
34
# File 'lib/worldline/connect/sdk/v1/domain/captures_response.rb', line 25

def from_hash(hash)
  super
  if hash.has_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 << Worldline::Connect::SDK::V1::Domain::Capture.new_from_hash(e)
    end
  end
end

#to_hHash

Returns:

  • (Hash)


19
20
21
22
23
# File 'lib/worldline/connect/sdk/v1/domain/captures_response.rb', line 19

def to_h
  hash = super
  hash['captures'] = @captures.collect{|val| val.to_h} unless @captures.nil?
  hash
end