Files
plexjava/src/main/java/47/one0/http/ButlerClient.java
2023-10-26 22:45:56 -05:00

16 lines
516 B
Java

package 47.one0.http;
import java.util.List;
import 47.one0.exceptions.ApiException;
public interface ButlerClient {
ResponseWithHeaders<47.one0.models.GetButlerTasksResponse> getButlerTasks() throws ApiException;
ResponseWithHeaders<String> startAllTasks() throws ApiException;
ResponseWithHeaders<String> stopAllTasks() throws ApiException;
ResponseWithHeaders<String> startTask(String taskName) throws ApiException;
ResponseWithHeaders<String> stopTask(String taskName) throws ApiException;
}