Represents a language configuration in Mintlify navigation.
public class LanguageConfig
[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("language")] public string Language { 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("versions")] public List<VersionConfig> Versions { get; set; }