All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amadeus.Schedule Maven / Gradle / Ivy

package com.amadeus;

import com.amadeus.schedule.Flights;

/**
 * 

* A namespaced client for the * /v2/schedule endpoints. *

* *

* Access via the Amadeus client object. *

* *
 * Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
 * amadeus.schedule;
* * @hide */ public class Schedule { /** *

* A namespaced client for the * /v2/schedule/flights endpoints. *

*/ public Flights flights; /** * Constructor. * @hide */ public Schedule(Amadeus client) { this.flights = new Flights(client); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy