Beispiel #1
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.booked = Booked(client)
     self.traveled = Traveled(client)
     self.searched = Searched(client)
     self.searched_by_destination = SearchedByDestination(client)
     self.busiest_period = BusiestPeriod(client)
Beispiel #2
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flight_dates = FlightDates(client)
     self.flight_destinations = FlightDestinations(client)
     self.flight_offers = FlightOffers(client)
     self.hotel_offers = HotelOffers(client)
     self.hotel_offers_by_hotel = HotelOffersByHotel(client)
Beispiel #3
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flight_dates = FlightDates(client)
     self.flight_destinations = FlightDestinations(client)
     self.flight_offers = FlightOffers(client)
     self.hotel_offers = HotelOffers(client)
     self.hotel_offers_by_hotel = HotelOffersByHotel(client)
     self.flight_offers_search = FlightOffersSearch(client)
     self.seatmaps = Seatmaps(client)
     self.activities = Activities(client)
Beispiel #4
0
 def __init__(self, client, safety_id):
     Decorator.__init__(self, client)
     self.safety_id = safety_id
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.prediction = FlightChoicePrediction(client)
     self.pricing = FlightOffersPrice(client)
 def __init__(self, client, offer_id):
     Decorator.__init__(self, client)
     self.offer_id = offer_id
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.predictions = Predictions(client)
Beispiel #8
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.analytics = Analytics(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.by_square = BySquare(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.safety_rated_locations = SafetyRatedLocations(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.checkin_links = CheckinLinks(client)
 def __init__(self, client, flight_order_id):
     Decorator.__init__(self, client)
     self.flight_order_id = flight_order_id
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.fare_searches = FareSearches(client)
     self.air_traffic = AirTraffic(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.trip_purpose = TripPurpose(client)
     self.flight_delay = FlightDelay(client)
Beispiel #15
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.files = Files(client)
Beispiel #16
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.airports = Airports(client)
     self.points_of_interest = PointsOfInterest(client)
Beispiel #17
0
 def __init__(self, client, location_id):
     Decorator.__init__(self, client)
     self.location_id = location_id
 def __init__(self, client, activity_id):
     Decorator.__init__(self, client)
     self.activity_id = activity_id
 def __init__(self, client, poi_id):
     Decorator.__init__(self, client)
     self.poi_id = poi_id
Beispiel #20
0
 def __init__(self, client, hotel_id, offer_id):
     Decorator.__init__(self, client)
     self.hotel_id = hotel_id
     self.offer_id = offer_id
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.analytics = Analytics(client)
     self.predictions = Predictions(client)
     self.trip_parser_jobs = TripParser(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flight_orders = FlightOrders(client)
     self.hotel_bookings = HotelBookings(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.urls = Urls(client)
     self.locations = Locations(client)
Beispiel #24
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.traveled = Traveled(client)
 def __init__(self, client, job_id):
     Decorator.__init__(self, client)
     self.job_id = job_id
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.urls = Urls(client)
     self.locations = Locations(client)
     self.airlines = Airlines(client)
     self.recommended_locations = RecommendedLocations(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flights = Flights(client)
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.booked = Booked(client)
     self.traveled = Traveled(client)
     self.busiest_period = BusiestPeriod(client)
Beispiel #30
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.air_traffic = AirTraffic(client)