Class: Worldline::Connect::SDK::V1::Domain::PersonalNameBase

Inherits:
Domain::DataObject show all
Defined in:
lib/worldline/connect/sdk/v1/domain/personal_name_base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#first_nameString

Returns the current value of first_name.

Returns:

  • (String)

    the current value of first_name



15
16
17
# File 'lib/worldline/connect/sdk/v1/domain/personal_name_base.rb', line 15

def first_name
  @first_name
end

#surnameString

Returns the current value of surname.

Returns:

  • (String)

    the current value of surname



15
16
17
# File 'lib/worldline/connect/sdk/v1/domain/personal_name_base.rb', line 15

def surname
  @surname
end

#surname_prefixString

Returns the current value of surname_prefix.

Returns:

  • (String)

    the current value of surname_prefix



15
16
17
# File 'lib/worldline/connect/sdk/v1/domain/personal_name_base.rb', line 15

def surname_prefix
  @surname_prefix
end

Instance Method Details

#from_hash(hash) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/worldline/connect/sdk/v1/domain/personal_name_base.rb', line 32

def from_hash(hash)
  super
  if hash.has_key? 'firstName'
    @first_name = hash['firstName']
  end
  if hash.has_key? 'surname'
    @surname = hash['surname']
  end
  if hash.has_key? 'surnamePrefix'
    @surname_prefix = hash['surnamePrefix']
  end
end

#to_hHash

Returns:

  • (Hash)


24
25
26
27
28
29
30
# File 'lib/worldline/connect/sdk/v1/domain/personal_name_base.rb', line 24

def to_h
  hash = super
  hash['firstName'] = @first_name unless @first_name.nil?
  hash['surname'] = @surname unless @surname.nil?
  hash['surnamePrefix'] = @surname_prefix unless @surname_prefix.nil?
  hash
end