mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 12:37:47 +00:00
16 lines
516 B
Java
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;
|
|
|
|
|
|
} |