ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.396.6

This commit is contained in:
speakeasybot
2024-09-13 00:25:35 +00:00
parent f83d7949e1
commit 5585a18ab9
652 changed files with 34020 additions and 4554 deletions

View File

@@ -0,0 +1,27 @@
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
package dev.plexapi.sdk.models.operations;
import com.fasterxml.jackson.annotation.JsonValue;
import java.lang.String;
/**
* GetTokenDetailsAuthenticationStatus - String representation of subscriptionActive
*/
public enum GetTokenDetailsAuthenticationStatus {
INACTIVE("Inactive"),
ACTIVE("Active");
@JsonValue
private final String value;
private GetTokenDetailsAuthenticationStatus(String value) {
this.value = value;
}
public String value() {
return value;
}
}