Represents a version configuration in Mintlify navigation.
public class VersionConfig
[JsonPropertyName("anchors")] public List<AnchorConfig> Anchors { get; set; }
[JsonPropertyName("asyncapi")] public object AsyncApi { get; set; }
[JsonPropertyName("default")] public bool? Default { get; set; }
[JsonPropertyName("dropdowns")] public List<DropdownConfig> Dropdowns { get; set; }
[JsonPropertyName("global")] public GlobalNavigationConfig Global { get; set; }
[JsonPropertyName("groups")] public List<GroupConfig> Groups { get; set; }
[JsonPropertyName("hidden")] public bool? Hidden { get; set; }
[JsonPropertyName("href")] public string Href { get; set; }
[JsonPropertyName("languages")] public List<LanguageConfig> Languages { get; set; }
[JsonPropertyName("openapi")] public object OpenApi { get; set; }
[JsonPropertyName("pages")] public List<object> Pages { get; set; }
[JsonPropertyName("tabs")] public List<TabConfig> Tabs { get; set; }
[JsonPropertyName("version")] public string Version { get; set; }