SDK update generated by liblab

This commit is contained in:
Luke Hagar
2023-10-26 21:45:53 -05:00
parent 1460e63788
commit b7c3207ff0
102 changed files with 14336 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
package com.plexsdk.http;
import com.plexsdk.exceptions.ApiException;
import java.util.List;
public interface PlaylistsClient {
ResponseWithHeaders<String> createPlaylist(
String title,
String type,
Float smart,
String uri,
Float playQueueID
) throws ApiException;
ResponseWithHeaders<String> getPlaylists(String playlistType, Float smart) throws ApiException;
ResponseWithHeaders<String> getPlaylist(Float playlistID) throws ApiException;
ResponseWithHeaders<String> updatePlaylist(Float playlistID) throws ApiException;
ResponseWithHeaders<String> deletePlaylist(Float playlistID) throws ApiException;
ResponseWithHeaders<String> getPlaylistContents(Float playlistID, Float type) throws ApiException;
ResponseWithHeaders<String> addPlaylistContents(Float playlistID, String uri, Float playQueueID)
throws ApiException;
ResponseWithHeaders<String> clearPlaylistContents(Float playlistID) throws ApiException;
ResponseWithHeaders<String> uploadPlaylist(String path, Float force) throws ApiException;
}