Class: Amadeus::Namespaces::ReferenceData
- Inherits:
-
Client::Decorator
- Object
- Client::Decorator
- Amadeus::Namespaces::ReferenceData
- Defined in:
- lib/amadeus/namespaces/reference_data.rb,
lib/amadeus/namespaces/reference_data/urls.rb,
lib/amadeus/namespaces/reference_data/airlines.rb,
lib/amadeus/namespaces/reference_data/location.rb,
lib/amadeus/namespaces/reference_data/locations.rb,
lib/amadeus/namespaces/reference_data/locations/airports.rb,
lib/amadeus/namespaces/reference_data/urls/checkin_links.rb,
lib/amadeus/namespaces/reference_data/locations/point_of_interest.rb,
lib/amadeus/namespaces/reference_data/locations/points_of_interest.rb,
lib/amadeus/namespaces/reference_data/locations/points_of_interest/by_square.rb
Overview
Defined Under Namespace
Classes: Airlines, Location, Locations, Urls
Instance Method Summary collapse
-
#airlines ⇒ Amadeus::Namespaces::ReferenceData::Airlines
The namespace for the Airline Code APIs - accessing a specific airline.
-
#location(location_id) ⇒ Amadeus::Namespaces::ReferenceData::Locations
The namespace for the Location APIs - accessing a specific location.
-
#locations ⇒ Amadeus::Namespaces::ReferenceData::Locations
The namespace for the Locations APIs:.
-
#urls ⇒ Amadeus::Namespaces::ReferenceData::Urls
The namespace for the Urls APIs.
Instance Method Details
#airlines ⇒ Amadeus::Namespaces::ReferenceData::Airlines
The namespace for the Airline Code APIs - accessing a specific airline
52 53 54 |
# File 'lib/amadeus/namespaces/reference_data.rb', line 52 def airlines Amadeus::Namespaces::ReferenceData::Airlines.new(client) end |
#location(location_id) ⇒ Amadeus::Namespaces::ReferenceData::Locations
The namespace for the Location APIs - accessing a specific location
42 43 44 |
# File 'lib/amadeus/namespaces/reference_data.rb', line 42 def location(location_id) Amadeus::Namespaces::ReferenceData::Location.new(client, location_id) end |
#locations ⇒ Amadeus::Namespaces::ReferenceData::Locations
The namespace for the Locations APIs:
31 32 33 |
# File 'lib/amadeus/namespaces/reference_data.rb', line 31 def locations Amadeus::Namespaces::ReferenceData::Locations.new(client) end |
#urls ⇒ Amadeus::Namespaces::ReferenceData::Urls
The namespace for the Urls APIs.
20 21 22 |
# File 'lib/amadeus/namespaces/reference_data.rb', line 20 def urls Amadeus::Namespaces::ReferenceData::Urls.new(client) end |