public interface UpdatesEndpoint
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<AvailablePatches> |
checkAll(String project,
String channel,
String version) |
retrofit2.Call<AvailableUpdates> |
checkNewest(String project,
String channel,
String version) |
@GET(value="updates/{project}/{channel}")
retrofit2.Call<AvailablePatches> checkAll(@Path(value="project")
String project,
@Path(value="channel")
String channel,
@Query(value="version")
String version)
@GET(value="updates/{project}/{channel}/check")
retrofit2.Call<AvailableUpdates> checkNewest(@Path(value="project")
String project,
@Path(value="channel")
String channel,
@Query(value="version")
String version)
Copyright © 2026 Suncode. All rights reserved.