@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.
10 lines (9 loc) • 309 B
text/typescript
export interface DeleteIssueTypeProperty {
/** The ID of the issue type. */
issueTypeId: string;
/**
* The key of the property. Use [Get issue type property keys](#api-rest-api-2-issuetype-issueTypeId-properties-get)
* to get a list of all issue type property keys.
*/
propertyKey: string;
}