Class: Worldline::Connect::SDK::V1::Domain::InstallmentOptionsResponse
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::InstallmentOptionsResponse
- Defined in:
- lib/worldline/connect/sdk/v1/domain/installment_options_response.rb
Instance Attribute Summary collapse
-
#installment_options ⇒ Array<Worldline::Connect::SDK::V1::Domain::InstallmentOptions>
The current value of installment_options.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#installment_options ⇒ Array<Worldline::Connect::SDK::V1::Domain::InstallmentOptions>
Returns the current value of installment_options.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/installment_options_response.rb', line 14 def @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_h ⇒ 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 |