Class: Worldline::Connect::SDK::V1::Domain::InstallmentOptionsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#installment_optionsArray<Worldline::Connect::SDK::V1::Domain::InstallmentOptions>

Returns the current value of installment_options.

Returns:



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

def installment_options
  @installment_options
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/installment_options_response.rb', line 25

def from_hash(hash)
  super
  if hash.has_key? 'installmentOptions'
    raise TypeError, "value '%s' is not an Array" % [hash['installmentOptions']] unless hash['installmentOptions'].is_a? Array
    @installment_options = []
    hash['installmentOptions'].each do |e|
      @installment_options << Worldline::Connect::SDK::V1::Domain::InstallmentOptions.new_from_hash(e)
    end
  end
end

#to_hHash

Returns:

  • (Hash)


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

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