# TheJiraCloudPlatformRestApi.JiraExpressionComplexity

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**expensiveOperations** | **String** | Information that can be used to determine how many [expensive operations](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/#expensive-operations) the evaluation of the expression will perform. This information may be a formula or number. For example:   *  &#x60;issues.map(i &#x3D;&gt; i.comments)&#x60; performs as many expensive operations as there are issues on the issues list. So this parameter returns &#x60;N&#x60;, where &#x60;N&#x60; is the size of issue list.  *  &#x60;new Issue(10010).comments&#x60; gets comments for one issue, so its complexity is &#x60;2&#x60; (&#x60;1&#x60; to retrieve issue 10010 from the database plus &#x60;1&#x60; to get its comments). | 
**variables** | **{String: String}** | Variables used in the formula, mapped to the parts of the expression they refer to. | [optional] 
