mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-08 20:47:49 +00:00
regerated and working on publishing
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||
*/
|
||||
|
||||
package dev.plexapi.sdk.models.operations;
|
||||
|
||||
import dev.plexapi.sdk.utils.Utils;
|
||||
|
||||
public class GetLibraryItemsRequestBuilder {
|
||||
|
||||
private GetLibraryItemsRequest request;
|
||||
private final SDKMethodInterfaces.MethodCallGetLibraryItems sdk;
|
||||
|
||||
public GetLibraryItemsRequestBuilder(SDKMethodInterfaces.MethodCallGetLibraryItems sdk) {
|
||||
this.sdk = sdk;
|
||||
}
|
||||
|
||||
public GetLibraryItemsRequestBuilder request(dev.plexapi.sdk.models.operations.GetLibraryItemsRequest request) {
|
||||
Utils.checkNotNull(request, "request");
|
||||
this.request = request;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetLibraryItemsResponse call() throws Exception {
|
||||
|
||||
return sdk.getLibraryItems(
|
||||
request);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user