pub struct JiraExpressionEvalContextBean {
pub issue: Option<Box<IdOrKeyBean>>,
pub issues: Option<Box<JexpIssues>>,
pub project: Option<Box<IdOrKeyBean>>,
pub sprint: Option<i64>,
pub board: Option<i64>,
pub service_desk: Option<i64>,
pub customer_request: Option<i64>,
}Fields§
§issue: Option<Box<IdOrKeyBean>>The issue that is available under the issue variable when evaluating the expression.
issues: Option<Box<JexpIssues>>The collection of issues that is available under the issues variable when evaluating the expression.
project: Option<Box<IdOrKeyBean>>The project that is available under the project variable when evaluating the expression.
sprint: Option<i64>The ID of the sprint that is available under the sprint variable when evaluating the expression.
board: Option<i64>The ID of the board that is available under the board variable when evaluating the expression.
service_desk: Option<i64>The ID of the service desk that is available under the serviceDesk variable when evaluating the expression.
customer_request: Option<i64>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.
Implementations§
Trait Implementations§
Source§impl Clone for JiraExpressionEvalContextBean
impl Clone for JiraExpressionEvalContextBean
Source§fn clone(&self) -> JiraExpressionEvalContextBean
fn clone(&self) -> JiraExpressionEvalContextBean
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for JiraExpressionEvalContextBean
impl Default for JiraExpressionEvalContextBean
Source§fn default() -> JiraExpressionEvalContextBean
fn default() -> JiraExpressionEvalContextBean
Source§impl<'de> Deserialize<'de> for JiraExpressionEvalContextBean
impl<'de> Deserialize<'de> for JiraExpressionEvalContextBean
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for JiraExpressionEvalContextBean
impl PartialEq for JiraExpressionEvalContextBean
Source§fn eq(&self, other: &JiraExpressionEvalContextBean) -> bool
fn eq(&self, other: &JiraExpressionEvalContextBean) -> bool
self and other values to be equal, and is used by ==.