[][src]Struct camunda_client::models::transition_instance_dto::TransitionInstanceDto

pub struct TransitionInstanceDto {
    pub id: Option<String>,
    pub parent_activity_instance_id: Option<String>,
    pub activity_id: Option<String>,
    pub activity_name: Option<String>,
    pub activity_type: Option<String>,
    pub process_instance_id: Option<String>,
    pub process_definition_id: Option<String>,
    pub execution_id: Option<String>,
    pub incident_ids: Option<Vec<String>>,
    pub incidents: Option<Vec<ActivityInstanceIncidentDto>>,
}

TransitionInstanceDto : A JSON object corresponding to the Activity Instance tree of the given process instance.

Fields

id: Option<String>

The id of the transition instance.

parent_activity_instance_id: Option<String>

The id of the parent activity instance, for example a sub process instance.

activity_id: Option<String>

The id of the activity that this instance enters (asyncBefore job) or leaves (asyncAfter job)

activity_name: Option<String>

The name of the activity that this instance enters (asyncBefore job) or leaves (asyncAfter job)

activity_type: Option<String>

The type of the activity that this instance enters (asyncBefore job) or leaves (asyncAfter job)

process_instance_id: Option<String>

The id of the process instance this instance is part of.

process_definition_id: Option<String>

The id of the process definition.

execution_id: Option<String>

The execution id.

incident_ids: Option<Vec<String>>

A list of incident ids.

incidents: Option<Vec<ActivityInstanceIncidentDto>>

A list of JSON objects containing incident specific properties: * id: the id of the incident * activityId: the activity id in which the incident occurred

Implementations

impl TransitionInstanceDto[src]

pub fn new() -> TransitionInstanceDto[src]

A JSON object corresponding to the Activity Instance tree of the given process instance.

Trait Implementations

impl Clone for TransitionInstanceDto[src]

impl Debug for TransitionInstanceDto[src]

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

impl PartialEq<TransitionInstanceDto> for TransitionInstanceDto[src]

impl Serialize for TransitionInstanceDto[src]

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