UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

11 lines (10 loc) 411 B
/** Details of the scope of the default sharing for new filters and dashboards. */ export interface DefaultShareScope { /** * 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: string; }