regerated and working on publishing

This commit is contained in:
Luke Hagar
2024-09-08 02:40:34 +00:00
parent 02ce124a6b
commit ac5716c20d
1312 changed files with 65980 additions and 37728 deletions

View File

@@ -0,0 +1,93 @@
/*
* 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.Boolean;
import java.lang.String;
import java.util.Optional;
public class GetPinRequestBuilder {
private Optional<Boolean> strong = Utils.readDefaultOrConstValue(
"strong",
"false",
new TypeReference<Optional<Boolean>>() {});
private Optional<String> xPlexClientIdentifier = Optional.empty();
private Optional<String> xPlexProduct = Optional.empty();
private Optional<String> serverURL = Optional.empty();
private final SDKMethodInterfaces.MethodCallGetPin sdk;
public GetPinRequestBuilder(SDKMethodInterfaces.MethodCallGetPin sdk) {
this.sdk = sdk;
}
public GetPinRequestBuilder strong(boolean strong) {
Utils.checkNotNull(strong, "strong");
this.strong = Optional.of(strong);
return this;
}
public GetPinRequestBuilder strong(java.util.Optional<java.lang.Boolean> strong) {
Utils.checkNotNull(strong, "strong");
this.strong = strong;
return this;
}
public GetPinRequestBuilder xPlexClientIdentifier(java.lang.String xPlexClientIdentifier) {
Utils.checkNotNull(xPlexClientIdentifier, "xPlexClientIdentifier");
this.xPlexClientIdentifier = Optional.of(xPlexClientIdentifier);
return this;
}
public GetPinRequestBuilder xPlexClientIdentifier(java.util.Optional<java.lang.String> xPlexClientIdentifier) {
Utils.checkNotNull(xPlexClientIdentifier, "xPlexClientIdentifier");
this.xPlexClientIdentifier = xPlexClientIdentifier;
return this;
}
public GetPinRequestBuilder xPlexProduct(java.lang.String xPlexProduct) {
Utils.checkNotNull(xPlexProduct, "xPlexProduct");
this.xPlexProduct = Optional.of(xPlexProduct);
return this;
}
public GetPinRequestBuilder xPlexProduct(java.util.Optional<java.lang.String> xPlexProduct) {
Utils.checkNotNull(xPlexProduct, "xPlexProduct");
this.xPlexProduct = xPlexProduct;
return this;
}
public GetPinRequestBuilder serverURL(java.lang.String serverURL) {
Utils.checkNotNull(serverURL, "serverURL");
this.serverURL = Optional.of(serverURL);
return this;
}
public GetPinRequestBuilder serverURL(java.util.Optional<java.lang.String> serverURL) {
Utils.checkNotNull(serverURL, "serverURL");
this.serverURL = serverURL;
return this;
}
public GetPinResponse call() throws Exception {
if (strong == null) {
strong = _SINGLETON_VALUE_Strong.value();
}
return sdk.getPin(
strong,
xPlexClientIdentifier,
xPlexProduct,
serverURL);
}
private static final LazySingletonValue<Optional<Boolean>> _SINGLETON_VALUE_Strong =
new LazySingletonValue<>(
"strong",
"false",
new TypeReference<Optional<Boolean>>() {});
}