Package io.getstream.chat.java.services
Interface UnreadCountsService
-
public interface UnreadCountsService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description retrofit2.Call<UnreadCounts.UnreadCountsBatchResponse>
batch(@NotNull UnreadCounts.UnreadCountsBatchRequestData unreadCountsBatchRequestData)
retrofit2.Call<UnreadCounts.UnreadCountsResponse>
get(@NotNull java.lang.String userId)
-
-
-
Method Detail
-
get
@GET("unread") retrofit2.Call<UnreadCounts.UnreadCountsResponse> get(@NotNull @Query("user_id") @NotNull java.lang.String userId)
-
batch
@POST("unread_batch") retrofit2.Call<UnreadCounts.UnreadCountsBatchResponse> batch(@NotNull @Body @NotNull UnreadCounts.UnreadCountsBatchRequestData unreadCountsBatchRequestData)
-
-