[][src]Struct camunda_client::models::set_retries_for_external_tasks_dto::SetRetriesForExternalTasksDto

pub struct SetRetriesForExternalTasksDto {
    pub retries: Option<i32>,
    pub external_task_ids: Option<Vec<String>>,
    pub process_instance_ids: Option<Vec<String>>,
    pub external_task_query: Option<ExternalTaskQueryDto>,
    pub process_instance_query: Option<ProcessInstanceQueryDto>,
    pub historic_process_instance_query: Option<HistoricProcessInstanceQueryDto>,
}

Fields

retries: Option<i32>

The number of retries to set for the external task. Must be >= 0. If this is 0, an incident is created and the task cannot be fetched anymore unless the retries are increased again. Can not be null.

external_task_ids: Option<Vec<String>>

The ids of the external tasks to set the number of retries for.

process_instance_ids: Option<Vec<String>>

The ids of process instances containing the tasks to set the number of retries for.

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

Implementations

impl SetRetriesForExternalTasksDto[src]

Trait Implementations

impl Clone for SetRetriesForExternalTasksDto[src]

impl Debug for SetRetriesForExternalTasksDto[src]

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

impl PartialEq<SetRetriesForExternalTasksDto> for SetRetriesForExternalTasksDto[src]

impl Serialize for SetRetriesForExternalTasksDto[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,