/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface DefaultShareScopeAsResponse { /** * The scope of the default sharing for new filters and dashboards: * `AUTHENTICATED` Shared with all logged-in users. * `GLOBAL` Shared with all logged-in users. This shows as `AUTHENTICATED` in the response. * `PRIVATE` Not shared with any users. */ scope: "GLOBAL" | "AUTHENTICATED" | "PRIVATE"; } //# sourceMappingURL=DefaultShareScopeAsResponse.d.ts.map