mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-07 04:20:49 +00:00
59 lines
2.1 KiB
Java
59 lines
2.1 KiB
Java
/*
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
package dev.plexapi.sdk.models.operations;
|
|
|
|
import com.fasterxml.jackson.core.type.TypeReference;
|
|
import dev.plexapi.sdk.utils.LazySingletonValue;
|
|
import dev.plexapi.sdk.utils.Utils;
|
|
import java.lang.Integer;
|
|
import java.util.Optional;
|
|
|
|
public class GetLibraryDetailsRequestBuilder {
|
|
|
|
private Optional<? extends IncludeDetails> includeDetails = Utils.readDefaultOrConstValue(
|
|
"includeDetails",
|
|
"0",
|
|
new TypeReference<Optional<? extends IncludeDetails>>() {});
|
|
private Integer sectionKey;
|
|
private final SDKMethodInterfaces.MethodCallGetLibraryDetails sdk;
|
|
|
|
public GetLibraryDetailsRequestBuilder(SDKMethodInterfaces.MethodCallGetLibraryDetails sdk) {
|
|
this.sdk = sdk;
|
|
}
|
|
|
|
public GetLibraryDetailsRequestBuilder includeDetails(IncludeDetails includeDetails) {
|
|
Utils.checkNotNull(includeDetails, "includeDetails");
|
|
this.includeDetails = Optional.of(includeDetails);
|
|
return this;
|
|
}
|
|
|
|
public GetLibraryDetailsRequestBuilder includeDetails(Optional<? extends IncludeDetails> includeDetails) {
|
|
Utils.checkNotNull(includeDetails, "includeDetails");
|
|
this.includeDetails = includeDetails;
|
|
return this;
|
|
}
|
|
|
|
public GetLibraryDetailsRequestBuilder sectionKey(int sectionKey) {
|
|
Utils.checkNotNull(sectionKey, "sectionKey");
|
|
this.sectionKey = sectionKey;
|
|
return this;
|
|
}
|
|
|
|
public GetLibraryDetailsResponse call() throws Exception {
|
|
if (includeDetails == null) {
|
|
includeDetails = _SINGLETON_VALUE_IncludeDetails.value();
|
|
}
|
|
return sdk.getLibraryDetails(
|
|
includeDetails,
|
|
sectionKey);
|
|
}
|
|
|
|
private static final LazySingletonValue<Optional<? extends IncludeDetails>> _SINGLETON_VALUE_IncludeDetails =
|
|
new LazySingletonValue<>(
|
|
"includeDetails",
|
|
"0",
|
|
new TypeReference<Optional<? extends IncludeDetails>>() {});
|
|
}
|