├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ └── build.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── CONTRIBUTORS ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Amadeus │ ├── Airport.swift │ ├── Airport │ └── Predictions │ │ └── OnTime.swift │ ├── Amadeus.swift │ ├── Analytics.swift │ ├── Analytics │ └── ItineraryPriceMetrics.swift │ ├── Booking.swift │ ├── Booking │ ├── FlightOrder.swift │ ├── FlightOrders.swift │ └── HotelBookings.swift │ ├── Client │ ├── AccessToken.swift │ ├── Client.swift │ ├── Configuration.swift │ ├── Request.swift │ └── Response.swift │ ├── EReputation.swift │ ├── EReputation │ └── HotelSentiments.swift │ ├── Location │ └── Analytics │ │ └── CategoryRatedAreas.swift │ ├── ReferenceData.swift │ ├── ReferenceData │ ├── AirLines.swift │ ├── Location.swift │ ├── Locations.swift │ ├── Locations │ │ ├── Airports.swift │ │ ├── PointOfInterest.swift │ │ ├── PointsOfInterest.swift │ │ └── PointsOfInterest │ │ │ └── BySquare.swift │ ├── RecommendedLocations.swift │ ├── Urls.swift │ └── Urls │ │ └── CheckinLinks.swift │ ├── Safety.swift │ ├── Safety │ ├── SafetyRatedLocation.swift │ ├── SafetyRatedLocations.swift │ └── SafetyRatedLocations │ │ └── SafetyRatedLocationsBySquare.swift │ ├── Schedule.swift │ ├── Schedule │ └── FlightsSchedule.swift │ ├── Shopping.swift │ ├── Shopping │ ├── Activities.swift │ ├── Activities │ │ └── ActivitiesBySquare.swift │ ├── Activity.swift │ ├── Availability.swift │ ├── Availability │ │ └── FlightAvailabilities.swift │ ├── FlightDates.swift │ ├── FlightDestinations.swift │ ├── FlightOffers.swift │ ├── FlightOffers │ │ ├── Prediction.swift │ │ ├── Pricing.swift │ │ └── Upselling.swift │ ├── FlightOffersSearch.swift │ ├── HotelOffer.swift │ ├── HotelOfferByHotel.swift │ ├── HotelOffers.swift │ └── SeatMaps.swift │ ├── Travel.swift │ └── Travel │ ├── Analytics │ ├── AirTraffic.swift │ └── air-traffic │ │ ├── Booked.swift │ │ ├── BusiestPeriod.swift │ │ └── Traveled.swift │ ├── Predictions.swift │ ├── Predictions │ ├── FlightDelay.swift │ └── TripPurpose.swift │ ├── TravelAnalytics.swift │ └── TripParser.swift └── Tests └── AmadeusTests ├── AirAITests.swift ├── AirBookingTests.swift ├── AirScheduleTests.swift ├── AirShoppingTests.swift ├── AirTravelInsightsTests.swift ├── AirUtilsTests.swift ├── CoreTests.swift ├── DestinationContentTests.swift ├── HotelTests.swift ├── TripAITests.swift ├── TripUtilsTests.swift └── XCTestManifests.swift /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Amadeus/Airport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Airport.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Airport/Predictions/OnTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Airport/Predictions/OnTime.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Amadeus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Amadeus.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Analytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Analytics.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Analytics/ItineraryPriceMetrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Analytics/ItineraryPriceMetrics.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Booking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Booking.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Booking/FlightOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Booking/FlightOrder.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Booking/FlightOrders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Booking/FlightOrders.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Booking/HotelBookings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Booking/HotelBookings.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Client/AccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Client/AccessToken.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Client/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Client/Client.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Client/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Client/Configuration.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Client/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Client/Request.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Client/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Client/Response.swift -------------------------------------------------------------------------------- /Sources/Amadeus/EReputation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/EReputation.swift -------------------------------------------------------------------------------- /Sources/Amadeus/EReputation/HotelSentiments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/EReputation/HotelSentiments.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Location/Analytics/CategoryRatedAreas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Location/Analytics/CategoryRatedAreas.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/AirLines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/AirLines.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Location.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Locations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Locations.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Locations/Airports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Locations/Airports.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Locations/PointOfInterest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Locations/PointOfInterest.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Locations/PointsOfInterest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Locations/PointsOfInterest.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Locations/PointsOfInterest/BySquare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Locations/PointsOfInterest/BySquare.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/RecommendedLocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/RecommendedLocations.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Urls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Urls.swift -------------------------------------------------------------------------------- /Sources/Amadeus/ReferenceData/Urls/CheckinLinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/ReferenceData/Urls/CheckinLinks.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Safety.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Safety.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Safety/SafetyRatedLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Safety/SafetyRatedLocation.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Safety/SafetyRatedLocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Safety/SafetyRatedLocations.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Safety/SafetyRatedLocations/SafetyRatedLocationsBySquare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Safety/SafetyRatedLocations/SafetyRatedLocationsBySquare.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Schedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Schedule.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Schedule/FlightsSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Schedule/FlightsSchedule.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/Activities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/Activities.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/Activities/ActivitiesBySquare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/Activities/ActivitiesBySquare.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/Activity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/Activity.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/Availability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/Availability.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/Availability/FlightAvailabilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/Availability/FlightAvailabilities.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightDates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightDates.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightDestinations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightDestinations.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightOffers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightOffers.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightOffers/Prediction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightOffers/Prediction.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightOffers/Pricing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightOffers/Pricing.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightOffers/Upselling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightOffers/Upselling.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/FlightOffersSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/FlightOffersSearch.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/HotelOffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/HotelOffer.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/HotelOfferByHotel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/HotelOfferByHotel.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/HotelOffers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/HotelOffers.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Shopping/SeatMaps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Shopping/SeatMaps.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Analytics/AirTraffic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Analytics/AirTraffic.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Analytics/air-traffic/Booked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Analytics/air-traffic/Booked.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Analytics/air-traffic/BusiestPeriod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Analytics/air-traffic/BusiestPeriod.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Analytics/air-traffic/Traveled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Analytics/air-traffic/Traveled.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Predictions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Predictions.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Predictions/FlightDelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Predictions/FlightDelay.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/Predictions/TripPurpose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/Predictions/TripPurpose.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/TravelAnalytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/TravelAnalytics.swift -------------------------------------------------------------------------------- /Sources/Amadeus/Travel/TripParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Sources/Amadeus/Travel/TripParser.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirAITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirAITests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirBookingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirBookingTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirScheduleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirScheduleTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirShoppingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirShoppingTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirTravelInsightsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirTravelInsightsTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/AirUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/AirUtilsTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/CoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/CoreTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/DestinationContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/DestinationContentTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/HotelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/HotelTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/TripAITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/TripAITests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/TripUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/TripUtilsTests.swift -------------------------------------------------------------------------------- /Tests/AmadeusTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev-examples/amadeus-ios/HEAD/Tests/AmadeusTests/XCTestManifests.swift --------------------------------------------------------------------------------