io.getstream.chat.java.services.TaskStatusService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-chat-java Show documentation
Show all versions of stream-chat-java Show documentation
Stream Chat Java Client for backend integrations
The newest version!
package io.getstream.chat.java.services;
import io.getstream.chat.java.models.TaskStatus.TaskStatusGetResponse;
import org.jetbrains.annotations.NotNull;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
public interface TaskStatusService {
@GET("tasks/{id}")
Call get(@NotNull @Path("id") String id);
}