ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2

This commit is contained in:
speakeasybot
2024-09-22 00:29:24 +00:00
parent 3499fe6d12
commit beae244178
352 changed files with 5737 additions and 3646 deletions

View File

@@ -0,0 +1,24 @@
/*
* 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;
public enum FlattenSeasons {
False("0"),
True("1");
@JsonValue
private final String value;
private FlattenSeasons(String value) {
this.value = value;
}
public String value() {
return value;
}
}