Class: OnlinePayments::SDK::Domain::AirlinePassenger
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::AirlinePassenger
- Defined in:
- lib/onlinepayments/sdk/domain/airline_passenger.rb
Instance Attribute Summary collapse
-
#airline_loyalty_status ⇒ String
The current value of airline_loyalty_status.
-
#first_name ⇒ String
The current value of first_name.
-
#passenger_type ⇒ String
The current value of passenger_type.
-
#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 OnlinePayments::SDK::DataObject
Instance Attribute Details
#airline_loyalty_status ⇒ String
Returns the current value of airline_loyalty_status.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def airline_loyalty_status @airline_loyalty_status end |
#first_name ⇒ String
Returns the current value of first_name.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def first_name @first_name end |
#passenger_type ⇒ String
Returns the current value of passenger_type.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def passenger_type @passenger_type end |
#surname ⇒ String
Returns the current value of surname.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def surname @surname end |
#surname_prefix ⇒ String
Returns the current value of surname_prefix.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def surname_prefix @surname_prefix end |
#title ⇒ String
Returns the current value of title.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 15 def title @title end |
Instance Method Details
#from_hash(hash) ⇒ Object
35 36 37 38 39 40 41 42 43 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 35 def from_hash(hash) super @airline_loyalty_status = hash['airlineLoyaltyStatus'] if hash.key? 'airlineLoyaltyStatus' @first_name = hash['firstName'] if hash.key? 'firstName' @passenger_type = hash['passengerType'] if hash.key? 'passengerType' @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
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 24 def to_h hash = super hash['airlineLoyaltyStatus'] = @airline_loyalty_status unless @airline_loyalty_status.nil? hash['firstName'] = @first_name unless @first_name.nil? hash['passengerType'] = @passenger_type unless @passenger_type.nil? hash['surname'] = @surname unless @surname.nil? hash['surnamePrefix'] = @surname_prefix unless @surname_prefix.nil? hash['title'] = @title unless @title.nil? hash end |