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

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

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy