@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.
15 lines (14 loc) • 510 B
text/typescript
export interface GetBoardByFilterId {
/**
* The starting index of the returned boards. Base index: 0. See the 'Pagination' section at the top of this page for
* more details.
*/
startAt?: number;
/**
* The maximum number of boards to return per page. Default: 50. See the 'Pagination' section at the top of this page
* for more details.
*/
maxResults?: number;
/** Filters results to boards that are relevant to a filter. Not supported for next-gen boards. */
filterId: number;
}