ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.474.0

This commit is contained in:
speakeasybot
2025-01-24 00:27:12 +00:00
parent 412b27f162
commit 9dc8821b31
53 changed files with 2204 additions and 946 deletions

View File

@@ -9,9 +9,13 @@ import java.lang.String;
import java.util.Objects;
import java.util.Optional;
/**
* FlattenSeasons - Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
*/
public enum FlattenSeasons {
False("0"),
True("1");
LibraryDefault("-1"),
Hide("0"),
Show("1");
@JsonValue
private final String value;