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.

18 lines (17 loc) 727 B
/** * Details of a user, group, field, or project role that holds a permission. See [Holder * object](../api-group-permission-schemes/#holder-object) in _Get all permission schemes_ for more information. */ export interface PermissionHolder { /** Expand options that include additional permission holder details in the response. */ expand?: string; /** * As a group's name can change, use of `value` is recommended. The identifier associated withthe `type` value that * defines the holder of the permission. */ parameter?: string; /** The type of permission holder. */ type: string; /** The identifier associated with the `type` value that defines the holder of the permission. */ value?: string; }