mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
Try to change data type from depricated Date
This commit is contained in:
@@ -99,4 +99,15 @@ public interface CustomApi {
|
||||
@Headers({"Content-Type:application/json"})
|
||||
@HTTP(method = "DELETE", path = "user/emails", hasBody = true)
|
||||
Call<Void> userDeleteEmailWithBody(@Body DeleteEmailOption body);
|
||||
|
||||
@Headers({"Content-Type:application/json"})
|
||||
@GET("notifications")
|
||||
Call<List<NotificationThread>> notifyGetList(
|
||||
@retrofit2.http.Query("all") Boolean all,
|
||||
@retrofit2.http.Query("status-types") List<String> statusTypes,
|
||||
@retrofit2.http.Query("subject-type") List<String> subjectType,
|
||||
@retrofit2.http.Query("since") String since,
|
||||
@retrofit2.http.Query("before") String before,
|
||||
@retrofit2.http.Query("page") Integer page,
|
||||
@retrofit2.http.Query("limit") Integer limit);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user