Represents a tab configuration in Mintlify navigation.
public class TabConfig
[JsonPropertyName("anchors")] public List<AnchorConfig> Anchors { get; set; }
[JsonPropertyName("asyncapi")] public object AsyncApi { 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("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("tab")] public string Tab { get; set; }
[JsonPropertyName("versions")] public List<VersionConfig> Versions { get; set; }