/** * 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 { IssuesMetaBean, JiraExpressionsComplexityBean } from './'; /** * * @export * @interface JiraExpressionEvaluationMetaDataBean */ export interface JiraExpressionEvaluationMetaDataBean { /** * Contains information about the `issues` variable in the context. For example, is the issues were loaded with JQL, information about the page will be included here. * @type {IssuesMetaBean} * @memberof JiraExpressionEvaluationMetaDataBean */ issues?: IssuesMetaBean; /** * Contains information about the expression complexity. For example, the number of steps it took to evaluate the expression. * @type {JiraExpressionsComplexityBean} * @memberof JiraExpressionEvaluationMetaDataBean */ complexity?: JiraExpressionsComplexityBean; } export declare function JiraExpressionEvaluationMetaDataBeanFromJSON(json: any): JiraExpressionEvaluationMetaDataBean; export declare function JiraExpressionEvaluationMetaDataBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): JiraExpressionEvaluationMetaDataBean; export declare function JiraExpressionEvaluationMetaDataBeanToJSON(value?: JiraExpressionEvaluationMetaDataBean): any;