@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.
11 lines (9 loc) • 329 B
text/typescript
import type { IssueLimitReportRequest } from '../models';
export interface GetIssueLimitReport extends IssueLimitReportRequest {
/**
* Return issue keys instead of issue ids in the response.
*
* Usage: Add `?isReturningKeys=true` to the end of the path to request issue keys.
*/
isReturningKeys?: boolean;
}