Class: Ingenico::Direct::SDK::Domain::PaymentProductFieldFormElement
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::PaymentProductFieldFormElement
- Defined in:
- lib/ingenico/direct/sdk/domain/payment_product_field_form_element.rb
Instance Attribute Summary collapse
-
#type ⇒ String
The current value of type.
-
#value_mapping ⇒ Array<Ingenico::Direct::SDK::Domain::ValueMappingElement>
The current value of value_mapping.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#type ⇒ String
Returns the current value of type.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_field_form_element.rb', line 13 def type @type end |
#value_mapping ⇒ Array<Ingenico::Direct::SDK::Domain::ValueMappingElement>
Returns the current value of value_mapping.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_field_form_element.rb', line 13 def value_mapping @value_mapping end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_field_form_element.rb', line 25 def from_hash(hash) super @type = hash['type'] if hash.key? 'type' if hash.key? 'valueMapping' raise TypeError, "value '%s' is not an Array" % [hash['valueMapping']] unless hash['valueMapping'].is_a? Array @value_mapping = [] hash['valueMapping'].each do |e| @value_mapping << Ingenico::Direct::SDK::Domain::ValueMappingElement.new_from_hash(e) end end end |
#to_h ⇒ Hash
18 19 20 21 22 23 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_field_form_element.rb', line 18 def to_h hash = super hash['type'] = @type unless @type.nil? hash['valueMapping'] = @value_mapping.collect(&:to_h) if @value_mapping hash end |