All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getstream.chat.java.services.UnreadCountsService Maven / Gradle / Ivy

There is a newer version: 1.27.2
Show newest version
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