diff options
Diffstat (limited to 'generator/src/main.rs')
-rw-r--r-- | generator/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/src/main.rs b/generator/src/main.rs index 986c21f..ab23cc8 100644 --- a/generator/src/main.rs +++ b/generator/src/main.rs @@ -261,7 +261,7 @@ fn schema_subtypes( .. } => { let name = format!("{parent_name}{}", name.to_pascal_case()); - let subtype = structs::create_enum(&name, schema.description.as_deref(), _enum)?; + let subtype = structs::create_enum(&name, schema.description.as_deref(), _enum, false)?; subtypes.push(subtype); } Schema { |