class Ingenico::Connect::SDK::Domain::Product::PaymentProducts
@attr [Array<Ingenico::Connect::SDK::Domain::Product::PaymentProduct>] payment_products
Attributes
payment_products[RW]
Public Instance Methods
from_hash(hash)
click to toggle source
Calls superclass method
Ingenico::Connect::SDK::DataObject#from_hash
# File lib/ingenico/connect/sdk/domain/product/payment_products.rb, line 24 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 << Ingenico::Connect::SDK::Domain::Product::PaymentProduct.new_from_hash(e) end end end
to_h()
click to toggle source
@return (Hash)
Calls superclass method
Ingenico::Connect::SDK::DataObject#to_h
# File lib/ingenico/connect/sdk/domain/product/payment_products.rb, line 18 def to_h hash = super hash['paymentProducts'] = @payment_products.collect{|val| val.to_h} unless @payment_products.nil? hash end