ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2

This commit is contained in:
speakeasybot
2024-09-21 00:25:44 +00:00
parent f3780ae807
commit 3499fe6d12
190 changed files with 4636 additions and 5690 deletions

View File

@@ -11,17 +11,17 @@ import com.fasterxml.jackson.annotation.JsonValue;
*
*/
public enum IncludeMeta {
ZERO(0L),
ONE(1L);
Disable(0),
Enable(1);
@JsonValue
private final long value;
private final int value;
private IncludeMeta(long value) {
private IncludeMeta(int value) {
this.value = value;
}
public long value() {
public int value() {
return value;
}
}