[][src]Struct camunda_client::models::process_instance_suspension_state_async_dto::ProcessInstanceSuspensionStateAsyncDto

pub struct ProcessInstanceSuspensionStateAsyncDto {
    pub suspended: Option<bool>,
    pub process_instance_ids: Option<Vec<String>>,
    pub process_instance_query: Option<ProcessInstanceQueryDto>,
    pub historic_process_instance_query: Option<HistoricProcessInstanceQueryDto>,
}

Fields

suspended: Option<bool>

A Boolean value which indicates whether to activate or suspend a given process instance. When the value is set to true, the given process instance will be suspended and when the value is set to false, the given process instance will be activated.

process_instance_ids: Option<Vec<String>>

A list of process instance ids which defines a group of process instances which will be activated or suspended by the operation.

process_instance_query: Option<ProcessInstanceQueryDto>historic_process_instance_query: Option<HistoricProcessInstanceQueryDto>

Implementations

impl ProcessInstanceSuspensionStateAsyncDto[src]

Trait Implementations

impl Clone for ProcessInstanceSuspensionStateAsyncDto[src]

impl Debug for ProcessInstanceSuspensionStateAsyncDto[src]

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

impl PartialEq<ProcessInstanceSuspensionStateAsyncDto> for ProcessInstanceSuspensionStateAsyncDto[src]

impl Serialize for ProcessInstanceSuspensionStateAsyncDto[src]

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