[][src]Struct camunda_client::models::evaluation_condition_dto::EvaluationConditionDto

pub struct EvaluationConditionDto {
    pub variables: Option<HashMap<String, VariableValueDto>>,
    pub business_key: Option<String>,
    pub tenant_id: Option<String>,
    pub without_tenant_id: Option<bool>,
    pub process_definition_id: Option<String>,
}

Fields

variables: Option<HashMap<String, VariableValueDto>>

A map of variables which are used for evaluation of the conditions and are injected into the process instances which have been triggered. Each key is a variable name and each value a JSON variable value object with the following properties.

business_key: Option<String>

Used for the process instances that have been triggered after the evaluation.

tenant_id: Option<String>

Used to evaluate a condition for a tenant with the given id. Will only evaluate conditions of process definitions which belong to the tenant.

without_tenant_id: Option<bool>

A Boolean value that indicates whether the conditions should only be evaluated of process definitions which belong to no tenant or not. Value may only be true, as false is the default behavior.

process_definition_id: Option<String>

Used to evaluate conditions of the process definition with the given id.

Implementations

impl EvaluationConditionDto[src]

Trait Implementations

impl Clone for EvaluationConditionDto[src]

impl Debug for EvaluationConditionDto[src]

impl<'de> Deserialize<'de> for EvaluationConditionDto[src]

impl PartialEq<EvaluationConditionDto> for EvaluationConditionDto[src]

impl Serialize for EvaluationConditionDto[src]

impl StructuralPartialEq for EvaluationConditionDto[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err