UNPKG

@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 (13 loc) 693 B
import type { SuggestedMappingsForPrioritiesRequestBean } from './suggestedMappingsForPrioritiesRequestBean'; import type { SuggestedMappingsForProjectsRequestBean } from './suggestedMappingsForProjectsRequestBean'; /** Details of changes to a priority scheme that require suggested priority mappings. */ export interface SuggestedMappingsRequest { /** The maximum number of results that could be on the page. */ maxResults?: number; priorities?: SuggestedMappingsForPrioritiesRequestBean; projects?: SuggestedMappingsForProjectsRequestBean; /** The id of the priority scheme. */ schemeId?: number; /** The index of the first item returned on the page. */ startAt?: number; }