/** * 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. */ /** * * @export * @interface JiraExpressionsComplexityValueBean */ export interface JiraExpressionsComplexityValueBean { /** * The complexity value of the current expression. * @type {number} * @memberof JiraExpressionsComplexityValueBean */ value: number; /** * The maximum allowed complexity. The evaluation will fail if this value is exceeded. * @type {number} * @memberof JiraExpressionsComplexityValueBean */ limit: number; } export declare function JiraExpressionsComplexityValueBeanFromJSON(json: any): JiraExpressionsComplexityValueBean; export declare function JiraExpressionsComplexityValueBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): JiraExpressionsComplexityValueBean; export declare function JiraExpressionsComplexityValueBeanToJSON(value?: JiraExpressionsComplexityValueBean): any;