@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
text/typescript
/**
* 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 {
/** The type of permission holder. */
type: 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 identifier associated with the `type` value that defines the holder of the permission. */
value?: string;
/** Expand options that include additional permission holder details in the response. */
expand?: string;
}