Class: Worldline::Connect::SDK::V1::Domain::PersonalInformationToken
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::PersonalInformationToken
- Defined in:
- lib/worldline/connect/sdk/v1/domain/personal_information_token.rb
Instance Attribute Summary collapse
-
#name ⇒ Worldline::Connect::SDK::V1::Domain::PersonalNameToken
The current value of name.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#name ⇒ Worldline::Connect::SDK::V1::Domain::PersonalNameToken
Returns the current value of name.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/personal_information_token.rb', line 14 def name @name end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/worldline/connect/sdk/v1/domain/personal_information_token.rb', line 25 def from_hash(hash) super if hash.has_key? 'name' raise TypeError, "value '%s' is not a Hash" % [hash['name']] unless hash['name'].is_a? Hash @name = Worldline::Connect::SDK::V1::Domain::PersonalNameToken.new_from_hash(hash['name']) end end |
#to_h ⇒ Hash
19 20 21 22 23 |
# File 'lib/worldline/connect/sdk/v1/domain/personal_information_token.rb', line 19 def to_h hash = super hash['name'] = @name.to_h unless @name.nil? hash end |