Class: Ingenico::Connect::SDK::Domain::Installments::InstallmentOptionsResponse
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Installments::InstallmentOptionsResponse
- Defined in:
- lib/ingenico/connect/sdk/domain/installments/installment_options_response.rb
Instance Attribute Summary collapse
-
#installment_options ⇒ Array<Ingenico::Connect::SDK::Domain::Installments::InstallmentOptions>
The current value of installment_options.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#installment_options ⇒ Array<Ingenico::Connect::SDK::Domain::Installments::InstallmentOptions>
Returns the current value of installment_options.
14 15 16 |
# File 'lib/ingenico/connect/sdk/domain/installments/installment_options_response.rb', line 14 def end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 32 33 34 |
# File 'lib/ingenico/connect/sdk/domain/installments/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 = [] hash['installmentOptions'].each do |e| << Ingenico::Connect::SDK::Domain::Installments::InstallmentOptions.new_from_hash(e) end end end |
#to_h ⇒ Hash
19 20 21 22 23 |
# File 'lib/ingenico/connect/sdk/domain/installments/installment_options_response.rb', line 19 def to_h hash = super hash['installmentOptions'] = .collect{|val| val.to_h} unless .nil? hash end |