DashboardLinkType
Dashboard Link type. Accepted values are dashboards (to refer to another dashboard) and link (to refer to an external resource)
Definition
class DashboardLinkType(enum.StrEnum):
"""
Dashboard Link type. Accepted values are dashboards (to refer to another dashboard) and link (to refer to an external resource)
"""
LINK = "link"
DASHBOARDS = "dashboards"