public interface Leaderboards
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<LeaderboardV99> |
fetch(java.lang.String project_name) |
retrofit2.Call<LeaderboardV99> |
fetch(java.lang.String project_name,
java.lang.String _exclude_fields)
Return the AutoML leaderboard for the given project.
|
retrofit2.Call<LeaderboardsV99> |
list() |
retrofit2.Call<LeaderboardsV99> |
list(java.lang.String project_name,
java.lang.String _exclude_fields)
Return all the AutoML leaderboards.
|
@GET(value="/99/Leaderboards") retrofit2.Call<LeaderboardsV99> list(@Field(value="project_name") java.lang.String project_name, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
project_name - Name of project of interest_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/99/Leaderboards") retrofit2.Call<LeaderboardsV99> list()
@GET(value="/99/Leaderboards/{project_name}")
retrofit2.Call<LeaderboardV99> fetch(@Path(value="project_name")
java.lang.String project_name,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
project_name - Name of project of interest_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/99/Leaderboards/{project_name}")
retrofit2.Call<LeaderboardV99> fetch(@Path(value="project_name")
java.lang.String project_name)