@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) • 450 B
text/typescript
import type { RequestTypeField } from './requestTypeField';
export interface CustomerRequestCreateMeta {
/** List of the fields included in this request. */
requestTypeFields?: RequestTypeField[];
/** Flag indicating if a request can be raised on behalf of another user (true) or not. */
canRaiseOnBehalfOf?: boolean;
/** Flag indicating if participants can be added to a request (true) or not. */
canAddRequestParticipants?: boolean;
}