@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 (8 loc) • 331 B
text/typescript
import type { AdditionalComment } from './additionalComment';
export interface CsatFeedbackFull {
/** Indicates the type of feedback, supported values: `csat`. */
type?: string;
/** A numeric representation of the rating, this must be an integer value between 1 and 5. */
rating?: number;
comment?: AdditionalComment;
}