export interface DeleteDashboardItemProperty {
  /** The ID of the dashboard. */
  dashboardId: string;
  /** The ID of the dashboard item. */
  itemId: string;
  /** The key of the dashboard item property. */
  propertyKey: string;
}
