mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 20:47:45 +00:00
11 lines
347 B
Java
11 lines
347 B
Java
package com.plexsdk.http;
|
|
|
|
import com.plexsdk.exceptions.ApiException;
|
|
import java.util.List;
|
|
|
|
public interface HubsClient {
|
|
ResponseWithHeaders<String> getGlobalHubs(Float count, Float onlyTransient) throws ApiException;
|
|
ResponseWithHeaders<String> getLibraryHubs(Float sectionId, Float count, Float onlyTransient)
|
|
throws ApiException;
|
|
}
|