Class: Worldline::Connect::SDK::V1::Domain::PaymentProductFieldDataRestrictions
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::PaymentProductFieldDataRestrictions
- Defined in:
- lib/worldline/connect/sdk/v1/domain/payment_product_field_data_restrictions.rb
Instance Attribute Summary collapse
-
#is_required ⇒ true/false
The current value of is_required.
-
#validators ⇒ Worldline::Connect::SDK::V1::Domain::PaymentProductFieldValidators
The current value of validators.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#is_required ⇒ true/false
Returns the current value of is_required.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_field_data_restrictions.rb', line 15 def is_required @is_required end |
#validators ⇒ Worldline::Connect::SDK::V1::Domain::PaymentProductFieldValidators
Returns the current value of validators.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_field_data_restrictions.rb', line 15 def validators @validators end |
Instance Method Details
#from_hash(hash) ⇒ Object
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_field_data_restrictions.rb', line 29 def from_hash(hash) super if hash.has_key? 'isRequired' @is_required = hash['isRequired'] end if hash.has_key? 'validators' raise TypeError, "value '%s' is not a Hash" % [hash['validators']] unless hash['validators'].is_a? Hash @validators = Worldline::Connect::SDK::V1::Domain::PaymentProductFieldValidators.new_from_hash(hash['validators']) end end |
#to_h ⇒ Hash
22 23 24 25 26 27 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_product_field_data_restrictions.rb', line 22 def to_h hash = super hash['isRequired'] = @is_required unless @is_required.nil? hash['validators'] = @validators.to_h unless @validators.nil? hash end |