jira_api_v2/models/
jexp_issues.rs

1/*
2 * The Jira Cloud platform REST API
3 *
4 * Jira Cloud platform REST API documentation
5 *
6 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
7 * Contact: ecosystem@atlassian.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// JexpIssues : The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct JexpIssues {
17    /// The JQL query that specifies the set of issues available in the Jira expression.
18    #[serde(rename = "jql", skip_serializing_if = "Option::is_none")]
19    pub jql: Option<Box<models::JexpJqlIssues>>,
20}
21
22impl JexpIssues {
23    /// The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable.
24    pub fn new() -> JexpIssues {
25        JexpIssues {
26            jql: None,
27        }
28    }
29}
30