Represents a dropdown configuration in Mintlify navigation.
public class DropdownConfig
[JsonPropertyName("anchors")] public List<AnchorConfig> Anchors { get; set; }
[JsonPropertyName("asyncapi")] public object AsyncApi { get; set; }
[JsonPropertyName("color")] public ColorPairConfig Color { get; set; }
[JsonPropertyName("description")] public string Description { get; set; }
[JsonPropertyName("dropdown")] public string Dropdown { 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("icon")] public object Icon { 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("versions")] public List<VersionConfig> Versions { get; set; }