@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.
12 lines (10 loc) • 488 B
text/typescript
import type { JqlFunctionPrecomputationGetByIdRequest } from '../models';
export interface GetPrecomputationsByID extends JqlFunctionPrecomputationGetByIdRequest {
/**
* [Order](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#ordering) the results by a field:
*
* `functionKey` Sorts by the functionKey. `used` Sorts by the used timestamp. `created` Sorts by the created
* timestamp. `updated` Sorts by the updated timestamp.
*/
orderBy?: string;
}