@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 (11 loc) • 383 B
text/typescript
export interface DeleteProperty {
/**
* The ID of the service desk which contains the request type. This can alternatively be a [project
* identifier.](#project-identifiers)
*/
serviceDeskId: string;
/** The ID of the request type for which the property will be removed. */
requestTypeId: number;
/** The key of the property to remove. */
propertyKey: string;
}