Class: OnlinePayments::SDK::Domain::PersonalName
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::PersonalName
- Defined in:
- lib/onlinepayments/sdk/domain/personal_name.rb
Instance Attribute Summary collapse
-
#first_name ⇒ String
The current value of first_name.
-
#surname ⇒ String
The current value of surname.
-
#title ⇒ String
The current value of title.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#first_name ⇒ String
Returns 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 |
#surname ⇒ String
Returns the current value of surname.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 12 def surname @surname end |
#title ⇒ String
Returns 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
26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 26 def from_hash(hash) super @first_name = hash['firstName'] if hash.key? 'firstName' @surname = hash['surname'] if hash.key? 'surname' @title = hash['title'] if hash.key? 'title' end |
#to_h ⇒ Hash
18 19 20 21 22 23 24 |
# File 'lib/onlinepayments/sdk/domain/personal_name.rb', line 18 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 |