Class: Google::Apis::WalletobjectsV1::ReservationInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReservationInfo

Returns a new instance of ReservationInfo.



6622
6623
6624
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6622

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confirmation_codeString

Confirmation code needed to check into this flight. This is the number that the passenger would enter into a kiosk at the airport to look up the flight and print a boarding pass. Corresponds to the JSON property confirmationCode

Returns:

  • (String)


6604
6605
6606
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6604

def confirmation_code
  @confirmation_code
end

#eticket_numberString

E-ticket number. Corresponds to the JSON property eticketNumber

Returns:

  • (String)


6609
6610
6611
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6609

def eticket_number
  @eticket_number
end

#frequent_flyer_infoGoogle::Apis::WalletobjectsV1::FrequentFlyerInfo

Frequent flyer membership information. Corresponds to the JSON property frequentFlyerInfo



6614
6615
6616
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6614

def frequent_flyer_info
  @frequent_flyer_info
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " walletobjects#reservationInfo". Corresponds to the JSON property kind

Returns:

  • (String)


6620
6621
6622
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6620

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6627
6628
6629
6630
6631
6632
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6627

def update!(**args)
  @confirmation_code = args[:confirmation_code] if args.key?(:confirmation_code)
  @eticket_number = args[:eticket_number] if args.key?(:eticket_number)
  @frequent_flyer_info = args[:frequent_flyer_info] if args.key?(:frequent_flyer_info)
  @kind = args[:kind] if args.key?(:kind)
end