/** * 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 { IdOrKeyBean, JexpIssues } from './'; /** * * @export * @interface JiraExpressionEvalContextBean */ export interface JiraExpressionEvalContextBean { /** * The ID of the customer request that is available under the `customerRequest` variable when evaluating the expression. This is the same as the ID of the underlying Jira issue, but the customer request context variable will have a different type. * @type {number} * @memberof JiraExpressionEvalContextBean */ customerRequest?: number; /** * The ID of the service desk that is available under the `serviceDesk` variable when evaluating the expression. * @type {number} * @memberof JiraExpressionEvalContextBean */ serviceDesk?: number; /** * The collection of issues that is available under the `issues` variable when evaluating the expression. * @type {JexpIssues} * @memberof JiraExpressionEvalContextBean */ issues?: JexpIssues; /** * The project that is available under the `project` variable when evaluating the expression. * @type {IdOrKeyBean} * @memberof JiraExpressionEvalContextBean */ project?: IdOrKeyBean; /** * The ID of the sprint that is available under the `sprint` variable when evaluating the expression. * @type {number} * @memberof JiraExpressionEvalContextBean */ sprint?: number; /** * The issue that is available under the `issue` variable when evaluating the expression. * @type {IdOrKeyBean} * @memberof JiraExpressionEvalContextBean */ issue?: IdOrKeyBean; /** * The ID of the board that is available under the `board` variable when evaluating the expression. * @type {number} * @memberof JiraExpressionEvalContextBean */ board?: number; } export declare function JiraExpressionEvalContextBeanFromJSON(json: any): JiraExpressionEvalContextBean; export declare function JiraExpressionEvalContextBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): JiraExpressionEvalContextBean; export declare function JiraExpressionEvalContextBeanToJSON(value?: JiraExpressionEvalContextBean): any;