@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.
24 lines (23 loc) • 1.03 kB
text/typescript
export interface FindGroups {
/** The string to find in group names. */
query?: string;
/**
* As a group's name can change, use of `excludeGroupIds` is recommended to identify a group. A group to exclude from
* the result. To exclude multiple groups, provide an ampersand-separated list. For example,
* `exclude=group1&exclude=group2`. This parameter cannot be used with the `excludeGroupIds` parameter.
*/
exclude?: string | string[];
/**
* A group ID to exclude from the result. To exclude multiple groups, provide an ampersand-separated list. For
* example, `excludeId=group1-id&excludeId=group2-id`. This parameter cannot be used with the `excludeGroups`
* parameter.
*/
excludeId?: string[];
/**
* The maximum number of groups to return. The maximum number of groups that can be returned is limited by the system
* property `jira.ajax.autocomplete.limit`.
*/
maxResults?: number;
/** Whether the search for groups should be case insensitive. */
caseInsensitive?: boolean;
}