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

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

There is a newer version: 10.0.0
Show newest version
package com.amadeus.resources;

import lombok.Getter;
import lombok.ToString;

@ToString
public class Search extends Resource {
  protected Search() { }

  private @Getter String subType;
  private @Getter String destination;
  private @Getter Analytics analytics;

  /**
   * An Search-related object as returned by the AirTraffic API.
   *
   * @see Searched#get()
   */
  @ToString
  public class Analytics {
    protected Analytics() {}

    private @Getter Searches searches;
  }

  /**
   * An Search-related object as returned by the AirTraffic API.
   *
   * @see Searched#get()
   */
  @ToString
  public class Searches {
    protected Searches() {}

    private @Getter Double score;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy