Class: Worldline::Connect::SDK::V1::Domain::PaymentProductGroups
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::PaymentProductGroups
- Defined in:
- lib/worldline/connect/sdk/v1/domain/payment_product_groups.rb
Instance Attribute Summary collapse
-
#payment_product_groups ⇒ Array<Worldline::Connect::SDK::V1::Domain::PaymentProductGroup>
The current value of payment_product_groups.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#payment_product_groups ⇒ Array<Worldline::Connect::SDK::V1::Domain::PaymentProductGroup>
Returns the current value of payment_product_groups.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_groups.rb', line 14 def payment_product_groups @payment_product_groups 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/payment_product_groups.rb', line 25 def from_hash(hash) super if hash.has_key? 'paymentProductGroups' raise TypeError, "value '%s' is not an Array" % [hash['paymentProductGroups']] unless hash['paymentProductGroups'].is_a? Array @payment_product_groups = [] hash['paymentProductGroups'].each do |e| @payment_product_groups << Worldline::Connect::SDK::V1::Domain::PaymentProductGroup.new_from_hash(e) end end end |
#to_h ⇒ Hash
19 20 21 22 23 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_groups.rb', line 19 def to_h hash = super hash['paymentProductGroups'] = @payment_product_groups.collect{|val| val.to_h} unless @payment_product_groups.nil? hash end |