Skip to content

Commit ff11ab3

Browse files
committed
Fix enum value
1 parent 2db5af4 commit ff11ab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cluster_api/clusterclasses.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,7 @@ pub struct ClusterClassStatusVariablesDefinitionsSchemaOpenApiv3Schema {
15391539
/// Enum is the list of valid values of the variable.
15401540
/// NOTE: Can be set for all types.
15411541
#[serde(default, skip_serializing_if = "Option::is_none", rename = "enum")]
1542-
pub r#enum: Option<Vec<BTreeMap<String, serde_json::Value>>>,
1542+
pub r#enum: Option<Vec<serde_json::Value>>,
15431543
/// Example is an example for this variable.
15441544
#[serde(default, skip_serializing_if = "Option::is_none")]
15451545
pub example: Option<serde_json::Value>,

0 commit comments

Comments
 (0)