@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.13 kB
text/typescript
export interface FindBulkAssignableUsers {
/**
* A query string that is matched against user attributes, such as `displayName` and `emailAddress`, to find relevant
* users. The string can match the prefix of the attribute's value. For example, _query=john_ matches a user with a
* `displayName` of _John Smith_ and a user with an `emailAddress` of _johnson@example.com_. Required, unless
* `accountId` is specified.
*/
query?: string;
/**
* This parameter is no longer available. See the [deprecation
* notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/)
* for details.
*/
username?: string;
/** A query string that is matched exactly against user `accountId`. Required, unless `query` is specified. */
accountId?: string;
/** A list of project keys (case sensitive). This parameter accepts a comma-separated list. */
projectKeys: string;
/** 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;
}