Class: OnlinePayments::SDK::Domain::PersonalName

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/personal_name.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#first_nameString

Returns the current value of first_name.

Returns:

  • (String)

    the current value of first_name



12
13
14
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 12

def first_name
  @first_name
end

#surnameString

Returns the current value of surname.

Returns:

  • (String)

    the current value of surname



12
13
14
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 12

def surname
  @surname
end

#titleString

Returns the current value of title.

Returns:

  • (String)

    the current value of title



12
13
14
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 12

def title
  @title
end

Instance Method Details

#from_hash(hash) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 29

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? 'title'
    @title = hash['title']
  end
end

#to_hHash

Returns:

  • (Hash)


21
22
23
24
25
26
27
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 21

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