Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2022-08-31 22:01:44 +00:00
parent 2d798c0fdb
commit f343294411
2 changed files with 12 additions and 3 deletions
@@ -309,6 +309,8 @@ public interface UserApi {
/**
* List the current user's tracked times
*
* @param page page number of results to return (1-based) (optional)
* @param limit page size of results (optional)
* @param since Only show times updated after the given time. This is a timestamp in RFC 3339
* format (optional)
* @param before Only show times updated before the given time. This is a timestamp in RFC 3339
@@ -317,7 +319,10 @@ public interface UserApi {
*/
@GET("user/times")
Call<List<TrackedTime>> userCurrentTrackedTimes(
@retrofit2.http.Query("since") Date since, @retrofit2.http.Query("before") Date before);
@retrofit2.http.Query("page") Integer page,
@retrofit2.http.Query("limit") Integer limit,
@retrofit2.http.Query("since") Date since,
@retrofit2.http.Query("before") Date before);
/**
* delete an access token