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

com.amadeus.resources.Destination Maven / Gradle / Ivy

package com.amadeus.resources;

import lombok.Getter;
import lombok.ToString;

/**
 * A Destination object as returned by the Airport Routes API.
 * @see com.amadeus.airport.DirectDestinations#get()
 * @see com.amadeus.airline.Destinations#get()
 */

@ToString
public class Destination extends Resource {
  private @Getter String type;
  private @Getter String subtype;
  private @Getter String name;
  private @Getter String iataCode;

  protected Destination() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy