@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.
18 lines (17 loc) • 589 B
text/typescript
/** The data classification. */
export interface DataClassificationTag {
/** The color of the data classification object. */
color?: string;
/** The description of the data classification object. */
description?: string;
/** The guideline of the data classification object. */
guideline?: string;
/** The ID of the data classification object. */
id: string;
/** The name of the data classification object. */
name?: string;
/** The rank of the data classification object. */
rank?: number;
/** The status of the data classification object. */
status: string;
}