@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.
17 lines (15 loc) • 558 B
text/typescript
import type { PagedListUserDetailsApplicationUser } from './pagedListUserDetailsApplicationUser';
export interface Group {
/** Expand options that include additional group details in the response. */
expand?: string;
/**
* The ID of the group, which uniquely identifies the group across all Atlassian products. For example,
* _952d12c3-5b5b-4d04-bb32-44d383afc4b2_.
*/
groupId?: string;
/** The name of group. */
name?: string;
/** The URL for these group details. */
self?: string;
users?: PagedListUserDetailsApplicationUser;
}