mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 04:20:46 +00:00
13 lines
334 B
Java
13 lines
334 B
Java
package 47.one0.http;
|
|
|
|
import java.util.List;
|
|
|
|
import 47.one0.exceptions.ApiException;
|
|
|
|
public interface ActivitiesClient {
|
|
|
|
ResponseWithHeaders<47.one0.models.GetServerActivitiesResponse> getServerActivities() throws ApiException;
|
|
ResponseWithHeaders<String> cancelServerActivities(String activityUUID) throws ApiException;
|
|
|
|
|
|
} |