push it to the correct place

This commit is contained in:
M M Arif
2023-10-08 11:44:43 +05:00
parent d977027f3a
commit 92d0d58fe5
@@ -97,4 +97,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>> notifyGetList2(
@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);
}