class Ingenico::Direct::SDK::Domain::GetPaymentProductsResponse
@attr [Array<Ingenico::Direct::SDK::Domain::PaymentProduct>] payment_products
Attributes
payment_products[RW]
Public Instance Methods
from_hash(hash)
click to toggle source
Calls superclass method
Ingenico::Direct::SDK::DataObject#from_hash
# File lib/ingenico/direct/sdk/domain/get_payment_products_response.rb, line 22 def from_hash(hash) super if hash.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::Direct::SDK::Domain::PaymentProduct.new_from_hash(e) end end end
to_h()
click to toggle source
@return (Hash)
Calls superclass method
Ingenico::Direct::SDK::DataObject#to_h
# File lib/ingenico/direct/sdk/domain/get_payment_products_response.rb, line 16 def to_h hash = super hash['paymentProducts'] = @payment_products.collect(&:to_h) if @payment_products hash end