@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 (16 loc) • 575 B
text/typescript
export interface SearchSecuritySchemes {
/** 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;
/**
* The list of issue security scheme IDs. To include multiple issue security scheme IDs, separate IDs with an
* ampersand: `id=10000&id=10001`.
*/
id?: string[];
/**
* The list of project IDs. To include multiple project IDs, separate IDs with an ampersand:
* `projectId=10000&projectId=10001`.
*/
projectId?: string[];
}