コード例 #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)
コード例 #2
0
ファイル: _shopping.py プロジェクト: tsolakoua/amadeus-python
 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)
コード例 #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)
コード例 #4
0
 def __init__(self, client, safety_id):
     Decorator.__init__(self, client)
     self.safety_id = safety_id
コード例 #5
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.prediction = FlightChoicePrediction(client)
     self.pricing = FlightOffersPrice(client)
コード例 #6
0
 def __init__(self, client, offer_id):
     Decorator.__init__(self, client)
     self.offer_id = offer_id
コード例 #7
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.predictions = Predictions(client)
コード例 #8
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.analytics = Analytics(client)
コード例 #9
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.by_square = BySquare(client)
コード例 #10
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.safety_rated_locations = SafetyRatedLocations(client)
コード例 #11
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.checkin_links = CheckinLinks(client)
コード例 #12
0
 def __init__(self, client, flight_order_id):
     Decorator.__init__(self, client)
     self.flight_order_id = flight_order_id
コード例 #13
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.fare_searches = FareSearches(client)
     self.air_traffic = AirTraffic(client)
コード例 #14
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.trip_purpose = TripPurpose(client)
     self.flight_delay = FlightDelay(client)
コード例 #15
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.files = Files(client)
コード例 #16
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.airports = Airports(client)
     self.points_of_interest = PointsOfInterest(client)
コード例 #17
0
 def __init__(self, client, location_id):
     Decorator.__init__(self, client)
     self.location_id = location_id
コード例 #18
0
 def __init__(self, client, activity_id):
     Decorator.__init__(self, client)
     self.activity_id = activity_id
コード例 #19
0
 def __init__(self, client, poi_id):
     Decorator.__init__(self, client)
     self.poi_id = poi_id
コード例 #20
0
 def __init__(self, client, hotel_id, offer_id):
     Decorator.__init__(self, client)
     self.hotel_id = hotel_id
     self.offer_id = offer_id
コード例 #21
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.analytics = Analytics(client)
     self.predictions = Predictions(client)
     self.trip_parser_jobs = TripParser(client)
コード例 #22
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flight_orders = FlightOrders(client)
     self.hotel_bookings = HotelBookings(client)
コード例 #23
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.urls = Urls(client)
     self.locations = Locations(client)
コード例 #24
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.traveled = Traveled(client)
コード例 #25
0
 def __init__(self, client, job_id):
     Decorator.__init__(self, client)
     self.job_id = job_id
コード例 #26
0
 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)
コード例 #27
0
 def __init__(self, client):
     Decorator.__init__(self, client)
コード例 #28
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.flights = Flights(client)
コード例 #29
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.booked = Booked(client)
     self.traveled = Traveled(client)
     self.busiest_period = BusiestPeriod(client)
コード例 #30
0
 def __init__(self, client):
     Decorator.__init__(self, client)
     self.air_traffic = AirTraffic(client)