mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 20:47:45 +00:00
SDK update generated by liblab
This commit is contained in:
12
src/main/java/com/plexsdk/http/SessionsClient.java
Normal file
12
src/main/java/com/plexsdk/http/SessionsClient.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package com.plexsdk.http;
|
||||
|
||||
import com.plexsdk.exceptions.ApiException;
|
||||
import java.util.List;
|
||||
|
||||
public interface SessionsClient {
|
||||
ResponseWithHeaders<String> getSessions() throws ApiException;
|
||||
ResponseWithHeaders<String> getSessionHistory() throws ApiException;
|
||||
ResponseWithHeaders<com.plexsdk.models.GetTranscodeSessionsResponse> getTranscodeSessions()
|
||||
throws ApiException;
|
||||
ResponseWithHeaders<String> stopTranscodeSession(String sessionKey) throws ApiException;
|
||||
}
|
||||
Reference in New Issue
Block a user