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