Class: OnlinePayments::SDK::Domain::PaymentProductFieldFormElement
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::PaymentProductFieldFormElement
- Defined in:
- lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb
Instance Attribute Summary collapse
-
#type ⇒ String
The current value of type.
-
#value_mapping ⇒ Array<OnlinePayments::SDK::Domain::ValueMappingElement>
The current value of value_mapping.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#type ⇒ String
Returns the current value of type.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb', line 12 def type @type end |
#value_mapping ⇒ Array<OnlinePayments::SDK::Domain::ValueMappingElement>
Returns the current value of value_mapping.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb', line 12 def value_mapping @value_mapping end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb', line 24 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 << OnlinePayments::SDK::Domain::ValueMappingElement.new_from_hash(e) end end end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb', line 17 def to_h hash = super hash['type'] = @type unless @type.nil? hash['valueMapping'] = @value_mapping.collect(&:to_h) if @value_mapping hash end |