[][src]Struct camunda_client::models::process_instance_with_variables_dto::ProcessInstanceWithVariablesDto

pub struct ProcessInstanceWithVariablesDto {
    pub variables: Option<HashMap<String, VariableValueDto>>,
    pub id: Option<String>,
    pub definition_id: Option<String>,
    pub business_key: Option<String>,
    pub case_instance_id: Option<String>,
    pub ended: Option<bool>,
    pub suspended: Option<bool>,
    pub tenant_id: Option<String>,
    pub links: Option<Vec<AtomLink>>,
}

Fields

variables: Option<HashMap<String, VariableValueDto>>

The id of the process instance.

id: Option<String>

The id of the process instance.

definition_id: Option<String>

The id of the process definition that this process instance belongs to.

business_key: Option<String>

The business key of the process instance.

case_instance_id: Option<String>

The id of the case instance associated with the process instance.

ended: Option<bool>

A flag indicating whether the process instance has ended or not. Deprecated: will always be false!

suspended: Option<bool>

A flag indicating whether the process instance is suspended or not.

tenant_id: Option<String>

The tenant id of the process instance.

links: Option<Vec<AtomLink>>

The links associated to this resource, with method, href and rel.

Implementations

impl ProcessInstanceWithVariablesDto[src]

Trait Implementations

impl Clone for ProcessInstanceWithVariablesDto[src]

impl Debug for ProcessInstanceWithVariablesDto[src]

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

impl PartialEq<ProcessInstanceWithVariablesDto> for ProcessInstanceWithVariablesDto[src]

impl Serialize for ProcessInstanceWithVariablesDto[src]

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