Class: Worldline::Connect::SDK::V1::Domain::AirlinePassenger
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::AirlinePassenger
- Defined in:
- lib/worldline/connect/sdk/v1/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 Domain::DataObject
Instance Attribute Details
#first_name ⇒ String
Returns the current value of first_name.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 16 def first_name @first_name end |
#surname ⇒ String
Returns the current value of surname.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 16 def surname @surname end |
#surname_prefix ⇒ String
Returns the current value of surname_prefix.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 16 def surname_prefix @surname_prefix end |
#title ⇒ String
Returns the current value of title.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 16 def title @title end |
Instance Method Details
#from_hash(hash) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 36 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 if hash.has_key? 'title' @title = hash['title'] end end |
#to_h ⇒ Hash
27 28 29 30 31 32 33 34 |
# File 'lib/worldline/connect/sdk/v1/domain/airline_passenger.rb', line 27 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 |