[][src]Struct camunda_client::models::message_correlation_result_with_variable_dto::MessageCorrelationResultWithVariableDto

pub struct MessageCorrelationResultWithVariableDto {
    pub result_type: Option<ResultType>,
    pub process_instance: Option<ProcessInstanceDto>,
    pub execution: Option<ExecutionDto>,
    pub variables: Option<HashMap<String, VariableValueDto>>,
}

MessageCorrelationResultWithVariableDto : The processInstance property only has a value if the resultType is set to ProcessDefinition. The processInstance with the properties as described in the get single instance method. The execution property only has a value if the resultType is set to Execution. The execution with the properties as described in the get single execution method.

Fields

result_type: Option<ResultType>

Indicates if the message was correlated to a message start event or an intermediate message catching event. In the first case, the resultType is ProcessDefinition and otherwise Execution.

process_instance: Option<ProcessInstanceDto>execution: Option<ExecutionDto>variables: Option<HashMap<String, VariableValueDto>>

This property is returned if the variablesInResultEnabled is set to true. Contains a list of the process variables.

Implementations

impl MessageCorrelationResultWithVariableDto[src]

pub fn new() -> MessageCorrelationResultWithVariableDto[src]

The processInstance property only has a value if the resultType is set to ProcessDefinition. The processInstance with the properties as described in the get single instance method. The execution property only has a value if the resultType is set to Execution. The execution with the properties as described in the get single execution method.

Trait Implementations

impl Clone for MessageCorrelationResultWithVariableDto[src]

impl Debug for MessageCorrelationResultWithVariableDto[src]

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

impl PartialEq<MessageCorrelationResultWithVariableDto> for MessageCorrelationResultWithVariableDto[src]

impl Serialize for MessageCorrelationResultWithVariableDto[src]

impl StructuralPartialEq for MessageCorrelationResultWithVariableDto[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