Class: OnlinePayments::SDK::Domain::PaymentProductFieldDataRestrictions
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::PaymentProductFieldDataRestrictions
- Defined in:
- lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb
Instance Attribute Summary collapse
-
#is_required ⇒ true/false
The current value of is_required.
-
#validators ⇒ OnlinePayments::SDK::Domain::PaymentProductFieldValidators
The current value of validators.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#is_required ⇒ true/false
Returns the current value of is_required.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb', line 12 def is_required @is_required end |
#validators ⇒ OnlinePayments::SDK::Domain::PaymentProductFieldValidators
Returns the current value of validators.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb', line 12 def validators @validators end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb', line 24 def from_hash(hash) super @is_required = hash['isRequired'] if hash.key? 'isRequired' if hash.key? 'validators' raise TypeError, "value '%s' is not a Hash" % [hash['validators']] unless hash['validators'].is_a? Hash @validators = OnlinePayments::SDK::Domain::PaymentProductFieldValidators.new_from_hash(hash['validators']) end end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb', line 17 def to_h hash = super hash['isRequired'] = @is_required unless @is_required.nil? hash['validators'] = @validators.to_h if @validators hash end |