ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2

This commit is contained in:
speakeasybot
2024-09-21 00:25:44 +00:00
parent f3780ae807
commit 3499fe6d12
190 changed files with 4636 additions and 5690 deletions

View File

@@ -13,20 +13,10 @@ import java.lang.Long;
import java.lang.Override;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
public class GetTokenByPinIdRequest {
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
@SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Client-Identifier")
private Optional<String> clientID;
/**
* The PinID to retrieve an access token for
*/
@@ -35,29 +25,10 @@ public class GetTokenByPinIdRequest {
@JsonCreator
public GetTokenByPinIdRequest(
Optional<String> clientID,
long pinID) {
Utils.checkNotNull(clientID, "clientID");
Utils.checkNotNull(pinID, "pinID");
this.clientID = clientID;
this.pinID = pinID;
}
public GetTokenByPinIdRequest(
long pinID) {
this(Optional.empty(), pinID);
}
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
@JsonIgnore
public Optional<String> clientID() {
return clientID;
}
/**
* The PinID to retrieve an access token for
@@ -71,30 +42,6 @@ public class GetTokenByPinIdRequest {
return new Builder();
}
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
public GetTokenByPinIdRequest withClientID(String clientID) {
Utils.checkNotNull(clientID, "clientID");
this.clientID = Optional.ofNullable(clientID);
return this;
}
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
public GetTokenByPinIdRequest withClientID(Optional<String> clientID) {
Utils.checkNotNull(clientID, "clientID");
this.clientID = clientID;
return this;
}
/**
* The PinID to retrieve an access token for
*/
@@ -114,58 +61,29 @@ public class GetTokenByPinIdRequest {
}
GetTokenByPinIdRequest other = (GetTokenByPinIdRequest) o;
return
Objects.deepEquals(this.clientID, other.clientID) &&
Objects.deepEquals(this.pinID, other.pinID);
}
@Override
public int hashCode() {
return Objects.hash(
clientID,
pinID);
}
@Override
public String toString() {
return Utils.toString(GetTokenByPinIdRequest.class,
"clientID", clientID,
"pinID", pinID);
}
public final static class Builder {
private Optional<String> clientID = Optional.empty();
private Long pinID;
private Builder() {
// force use of static builder() method
}
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
public Builder clientID(String clientID) {
Utils.checkNotNull(clientID, "clientID");
this.clientID = Optional.ofNullable(clientID);
return this;
}
/**
* The unique identifier for the client application
* This is used to track the client application and its usage
* (UUID, serial number, or other number unique per device)
*
*/
public Builder clientID(Optional<String> clientID) {
Utils.checkNotNull(clientID, "clientID");
this.clientID = clientID;
return this;
}
/**
* The PinID to retrieve an access token for
*/
@@ -177,7 +95,6 @@ public class GetTokenByPinIdRequest {
public GetTokenByPinIdRequest build() {
return new GetTokenByPinIdRequest(
clientID,
pinID);
}
}