/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SharePermission } from "../definitions/SharePermission"; export interface DashboardDetails { /** * The description of the dashboard. */ description?: string; /** * The edit permissions for the dashboard. */ editPermissions: Array; /** * The name of the dashboard. */ name: string; /** * The share permissions for the dashboard. */ sharePermissions: Array; } //# sourceMappingURL=DashboardDetails.d.ts.map