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