pub struct JexpJqlIssues {
pub query: Option<String>,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub validation: Option<Validation>,
}
Expand description
JexpJqlIssues : The JQL specifying the issues available in the evaluated Jira expression under the issues
context variable. Not all issues returned by the JQL query are loaded, only those described by the startAt
and maxResults
properties. To determine whether it is necessary to iterate to ensure all the issues returned by the JQL query are evaluated, inspect meta.issues.jql.count
in the response.
Fields§
§query: Option<String>
The JQL query.
start_at: Option<i64>
The index of the first issue to return from the JQL query.
max_results: Option<i32>
The maximum number of issues to return from the JQL query. Inspect meta.issues.jql.maxResults
in the response to ensure the maximum value has not been exceeded.
validation: Option<Validation>
Determines how to validate the JQL query and treat the validation results.
Implementations§
Source§impl JexpJqlIssues
impl JexpJqlIssues
Sourcepub fn new() -> JexpJqlIssues
pub fn new() -> JexpJqlIssues
The JQL specifying the issues available in the evaluated Jira expression under the issues
context variable. Not all issues returned by the JQL query are loaded, only those described by the startAt
and maxResults
properties. To determine whether it is necessary to iterate to ensure all the issues returned by the JQL query are evaluated, inspect meta.issues.jql.count
in the response.
Trait Implementations§
Source§impl Clone for JexpJqlIssues
impl Clone for JexpJqlIssues
Source§fn clone(&self) -> JexpJqlIssues
fn clone(&self) -> JexpJqlIssues
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more