SDK update generated by liblab

This commit is contained in:
Luke Hagar
2023-10-26 22:45:56 -05:00
parent dfc93198c4
commit f2392f7e5c
97 changed files with 11391 additions and 27 deletions

View File

@@ -0,0 +1,16 @@
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;
}