@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.
15 lines (11 loc) • 337 B
text/typescript
import type { SimpleApplicationProperty } from '../models';
export interface SetApplicationProperty extends SimpleApplicationProperty {
/** The key of the application property to update. */
id: string;
body?: {
/** The ID of the application property. */
id?: string;
/** The new value. */
value?: string;
};
}