Files
plexjava/src/main/java/47/one0/http/HubsClient.java
2023-12-08 20:09:14 -08:00

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;
}