@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 (10 loc) • 363 B
text/typescript
export interface RequestTypeCreate {
/** ID of the request type to add to the service desk. */
issueTypeId?: string;
/** Name of the request type on the service desk. */
name?: string;
/** Description of the request type on the service desk. */
description?: string;
/** Help text for the request type on the service desk. */
helpText?: string;
}