pub const AvailableOption = extern struct
pub const AvailableOption = extern struct { name: String, description: String, type: Type, /// If the `type_id` is `enum` or `enum_list` this provides the list of enum options enum_options: OptionalStringList, pub const Type = enum(u8) { bool, int, float, @"enum", enum_list, string, list, build_id, lazy_path, lazy_path_list, }; }