/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * DashboardScope selects dashboards by whether they are tied to a link. * * - DASHBOARD_SCOPE_UNSPECIFIED: Every dashboard in the workspace, link-scoped or not. * - DASHBOARD_SCOPE_WORKSPACE: Only the workspace-wide dashboard, the one with no link. * - DASHBOARD_SCOPE_LINK: Only dashboards tied to a link. * @export */ export declare const DashboardScope: { readonly DashboardScopeUnspecified: "DASHBOARD_SCOPE_UNSPECIFIED"; readonly DashboardScopeWorkspace: "DASHBOARD_SCOPE_WORKSPACE"; readonly DashboardScopeLink: "DASHBOARD_SCOPE_LINK"; }; export type DashboardScope = typeof DashboardScope[keyof typeof DashboardScope]; export declare function instanceOfDashboardScope(value: any): boolean; export declare function DashboardScopeFromJSON(json: any): DashboardScope; export declare function DashboardScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardScope; export declare function DashboardScopeToJSON(value?: DashboardScope | null): any; export declare function DashboardScopeToJSONTyped(value: any, ignoreDiscriminator: boolean): DashboardScope;