/** * 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 { JiraExpressionsComplexityValueBean } from './'; /** * * @export * @interface JiraExpressionsComplexityBean */ export interface JiraExpressionsComplexityBean { /** * The number of steps it took to evaluate the expression. * @type {JiraExpressionsComplexityValueBean} * @memberof JiraExpressionsComplexityBean */ steps?: JiraExpressionsComplexityValueBean; /** * The number of Jira REST API beans returned in the response. * @type {JiraExpressionsComplexityValueBean} * @memberof JiraExpressionsComplexityBean */ beans?: JiraExpressionsComplexityValueBean; /** * The number of primitive values returned in the response. * @type {JiraExpressionsComplexityValueBean} * @memberof JiraExpressionsComplexityBean */ primitiveValues?: JiraExpressionsComplexityValueBean; /** * The number of expensive operations executed while evaluating the expression. Expensive operations are those that load additional data, such as entity properties, comments, or custom fields. * @type {JiraExpressionsComplexityValueBean} * @memberof JiraExpressionsComplexityBean */ expensiveOperations?: JiraExpressionsComplexityValueBean; } export declare function JiraExpressionsComplexityBeanFromJSON(json: any): JiraExpressionsComplexityBean; export declare function JiraExpressionsComplexityBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): JiraExpressionsComplexityBean; export declare function JiraExpressionsComplexityBeanToJSON(value?: JiraExpressionsComplexityBean): any;