Class: OnlinePayments::SDK::Domain::AirlinePassenger

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/airline_passenger.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#first_nameString

Returns the current value of first_name.

Returns:

  • (String)

    the current value of first_name



13
14
15
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 13

def first_name
  @first_name
end

#surnameString

Returns the current value of surname.

Returns:

  • (String)

    the current value of surname



13
14
15
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 13

def surname
  @surname
end

#surname_prefixString

Returns the current value of surname_prefix.

Returns:

  • (String)

    the current value of surname_prefix



13
14
15
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 13

def surname_prefix
  @surname_prefix
end

#titleString

Returns the current value of title.

Returns:

  • (String)

    the current value of title



13
14
15
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 13

def title
  @title
end

Instance Method Details

#from_hash(hash) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/onlinepayments/sdk/domain/airline_passenger.rb', line 29

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_hHash

Returns:

  • (Hash)


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

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