/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { JiraExpressionEvaluationMetaDataBean } from './'; /** * The result of evaluating a Jira expression. * @export * @interface JiraExpressionResult */ export interface JiraExpressionResult { /** * 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.) * @type {object} * @memberof JiraExpressionResult */ value: object; /** * Contains various characteristics of the performed expression evaluation. * @type {JiraExpressionEvaluationMetaDataBean} * @memberof JiraExpressionResult */ meta?: JiraExpressionEvaluationMetaDataBean; } export declare function JiraExpressionResultFromJSON(json: any): JiraExpressionResult; export declare function JiraExpressionResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): JiraExpressionResult; export declare function JiraExpressionResultToJSON(value?: JiraExpressionResult): any;