Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Travel Restrictions v2 #254

Merged
merged 1 commit into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,6 @@ Destination[] directDestinations = amadeus.airport.directDestinations.get(Params
FlightAvailability[] flightAvailabilities
= amadeus.shopping.availability.flightAvailabilities.post(body);

// Travel Restrictions v2 GET
DiseaseReport diseaseReport
= amadeus.dutyOfCare.diseases.covid19Report.get(Params.with("countryCode","US"));

// Location Score GET
ScoredLocation[] scoredLocations
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/amadeus/Amadeus.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,6 @@ public class Amadeus extends HTTPClient {
*/
public Analytics analytics;

/**
* <p>
* A namespaced client for the <code>/v1/duty-of-care</code> endpoints.
* </p>
*/
public DutyOfCare dutyOfCare;

/**
* <p>
* A namespaced client for the <code>/v1/location</code> endpoints.
Expand Down Expand Up @@ -129,7 +122,6 @@ protected Amadeus(Configuration configuration) {
this.safety = new Safety(this);
this.schedule = new Schedule(this);
this.analytics = new Analytics(this);
this.dutyOfCare = new DutyOfCare(this);
this.location = new Location(this);
this.airline = new Airline(this);
this.ordering = new Ordering(this);
Expand Down
37 changes: 0 additions & 37 deletions src/main/java/com/amadeus/DutyOfCare.java

This file was deleted.

28 changes: 0 additions & 28 deletions src/main/java/com/amadeus/dutyOfCare/Diseases.java

This file was deleted.

This file was deleted.

Loading