@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.
12 lines (10 loc) • 437 B
text/typescript
import type { UpdateUserToGroup } from '../models';
export interface AddUserToGroup extends UpdateUserToGroup {
/**
* 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;
}