ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.406.0

This commit is contained in:
speakeasybot
2024-10-03 00:28:29 +00:00
parent fa542f04e1
commit 2e4350c8c4
247 changed files with 21314 additions and 5695 deletions

View File

@@ -0,0 +1,26 @@
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
package dev.plexapi.sdk.models.operations;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* QueryParamIncludeCollections - Whether to include collections in the search results.
*/
public enum QueryParamIncludeCollections {
Disable(0),
Enable(1);
@JsonValue
private final int value;
private QueryParamIncludeCollections(int value) {
this.value = value;
}
public int value() {
return value;
}
}