Class: Ingenico::Direct::SDK::Domain::AirlinePassenger
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::AirlinePassenger
- Defined in:
- lib/ingenico/direct/sdk/domain/airline_passenger.rb
Instance Attribute Summary collapse
-
#first_name ⇒ String
The current value of first_name.
-
#surname ⇒ String
The current value of surname.
-
#surname_prefix ⇒ String
The current value of surname_prefix.
-
#title ⇒ String
The current value of title.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#first_name ⇒ String
Returns the current value of first_name.
14 15 16 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 14 def first_name @first_name end |
#surname ⇒ String
Returns the current value of surname.
14 15 16 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 14 def surname @surname end |
#surname_prefix ⇒ String
Returns the current value of surname_prefix.
14 15 16 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 14 def surname_prefix @surname_prefix end |
#title ⇒ String
Returns the current value of title.
14 15 16 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 14 def title @title end |
Instance Method Details
#from_hash(hash) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 30 def from_hash(hash) super @first_name = hash['firstName'] if hash.key? 'firstName' @surname = hash['surname'] if hash.key? 'surname' @surname_prefix = hash['surnamePrefix'] if hash.key? 'surnamePrefix' @title = hash['title'] if hash.key? 'title' end |
#to_h ⇒ Hash
21 22 23 24 25 26 27 28 |
# File 'lib/ingenico/direct/sdk/domain/airline_passenger.rb', line 21 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['title'] = @title unless @title.nil? hash end |