io.getstream.chat.java.services.UnreadCountsService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-chat-java-all Show documentation
Show all versions of stream-chat-java-all Show documentation
Stream Chat Java Client for backend integrations
package io.getstream.chat.java.services;
import io.getstream.chat.java.models.UnreadCounts.*;
import org.jetbrains.annotations.NotNull;
import retrofit2.Call;
import retrofit2.http.*;
public interface UnreadCountsService {
@GET("unread")
Call get(@NotNull @Query("user_id") String userId);
@POST("unread_batch")
Call batch(
@NotNull @Body UnreadCountsBatchRequestData unreadCountsBatchRequestData);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy