@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.
17 lines (15 loc) • 712 B
text/typescript
import type { JExpEvaluateMetaData } from './jExpEvaluateMetaData';
/**
* The result of evaluating a Jira expression.This bean will be replacing `JiraExpressionResultBean` bean as part of new
* evaluate endpoint
*/
export interface EvaluatedJiraExpression {
meta?: JExpEvaluateMetaData;
/**
* The value of the evaluated expression. It may be a primitive JSON value or a Jira REST API object. (Some
* expressions do not produce any meaningful results—for example, an expression that returns a lambda function—if
* that's the case a simple string representation is returned. These string representations should not be relied upon
* and may change without notice.)
*/
value: unknown;
}