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 startAllTasks() throws ApiException; ResponseWithHeaders stopAllTasks() throws ApiException; ResponseWithHeaders startTask(String taskName) throws ApiException; ResponseWithHeaders stopTask(String taskName) throws ApiException; }