ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.476.1

This commit is contained in:
speakeasybot
2025-01-27 00:28:08 +00:00
parent 9dc8821b31
commit 22654201f5
19 changed files with 150 additions and 140 deletions

View File

@@ -10,20 +10,20 @@ import java.util.Objects;
import java.util.Optional;
/**
* ShowOrdering - Setting that indicates the episode ordering for the show
* ShowOrdering - Setting that indicates the episode ordering for the show.
* None = Library default,
* tmdbAiring = The Movie Database (Aired),
* tvdbAiring = TheTVDB (Aired),
* tvdbDvd = TheTVDB (DVD),
* tvdbAbsolute = TheTVDB (Absolute)).
* aired = TheTVDB (Aired),
* dvd = TheTVDB (DVD),
* absolute = TheTVDB (Absolute)).
*
*/
public enum ShowOrdering {
None("None"),
TmdbAiring("tmdbAiring"),
TvdbAiring("tvdbAiring"),
TvdbDvd("tvdbDvd"),
TvdbAbsolute("tvdbAbsolute");
TvdbAired("aired"),
TvdbDvd("dvd"),
TvdbAbsolute("absolute");
@JsonValue
private final String value;