[][src]Struct camunda_client::models::process_instance_modification_dto::ProcessInstanceModificationDto

pub struct ProcessInstanceModificationDto {
    pub skip_custom_listeners: Option<bool>,
    pub skip_io_mappings: Option<bool>,
    pub instructions: Option<Vec<ProcessInstanceModificationInstructionDto>>,
    pub annotation: Option<String>,
}

Fields

skip_custom_listeners: Option<bool>

Skip execution listener invocation for activities that are started or ended as part of this request.

skip_io_mappings: Option<bool>

Skip execution of input/output variable mappings for activities that are started or ended as part of this request.

instructions: Option<Vec<ProcessInstanceModificationInstructionDto>>

JSON array of modification instructions. The instructions are executed in the order they are in.

annotation: Option<String>

An arbitrary text annotation set by a user for auditing reasons.

Implementations

impl ProcessInstanceModificationDto[src]

Trait Implementations

impl Clone for ProcessInstanceModificationDto[src]

impl Debug for ProcessInstanceModificationDto[src]

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

impl PartialEq<ProcessInstanceModificationDto> for ProcessInstanceModificationDto[src]

impl Serialize for ProcessInstanceModificationDto[src]

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