@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.
16 lines (15 loc) • 611 B
text/typescript
export interface GetUsersFromGroup {
/**
* As a group's name can change, use of `groupId` is recommended to identify a group. The name of the group. This
* parameter cannot be used with the `groupId` parameter.
*/
groupname?: string;
/** The ID of the group. This parameter cannot be used with the `groupName` parameter. */
groupId?: string;
/** Include inactive users. */
includeInactiveUsers?: boolean;
/** The index of the first item to return in a page of results (page offset). */
startAt?: number;
/** The maximum number of items to return per page. */
maxResults?: number;
}