[][src]Struct camunda_client::models::external_task_dto::ExternalTaskDto

pub struct ExternalTaskDto {
    pub activity_id: Option<String>,
    pub activity_instance_id: Option<String>,
    pub error_message: Option<String>,
    pub execution_id: Option<String>,
    pub id: Option<String>,
    pub lock_expiration_time: Option<String>,
    pub process_definition_id: Option<String>,
    pub process_definition_key: Option<String>,
    pub process_definition_version_tag: Option<String>,
    pub process_instance_id: Option<String>,
    pub tenant_id: Option<String>,
    pub retries: Option<i32>,
    pub suspended: Option<bool>,
    pub worker_id: Option<String>,
    pub topic_name: Option<String>,
    pub priority: Option<i64>,
    pub business_key: Option<String>,
}

ExternalTaskDto : An External Task object with the following properties

Fields

activity_id: Option<String>

The id of the activity that this external task belongs to.

activity_instance_id: Option<String>

The id of the activity instance that the external task belongs to.

error_message: Option<String>

The full error message submitted with the latest reported failure executing this task; null if no failure was reported previously or if no error message was submitted

execution_id: Option<String>

The id of the execution that the external task belongs to.

id: Option<String>

The id of the external task.

lock_expiration_time: Option<String>

The date that the task's most recent lock expires or has expired.

process_definition_id: Option<String>

The id of the process definition the external task is defined in.

process_definition_key: Option<String>

The key of the process definition the external task is defined in.

process_definition_version_tag: Option<String>

The version tag of the process definition the external task is defined in.

process_instance_id: Option<String>

The id of the process instance the external task belongs to.

tenant_id: Option<String>

The id of the tenant the external task belongs to.

retries: Option<i32>

The number of retries the task currently has left.

suspended: Option<bool>

A flag indicating whether the external task is suspended or not.

worker_id: Option<String>

The id of the worker that posesses or posessed the most recent lock.

topic_name: Option<String>

The topic name of the external task.

priority: Option<i64>

The priority of the external task.

business_key: Option<String>

The business key of the process instance the external task belongs to.

Implementations

impl ExternalTaskDto[src]

pub fn new() -> ExternalTaskDto[src]

An External Task object with the following properties

Trait Implementations

impl Clone for ExternalTaskDto[src]

impl Debug for ExternalTaskDto[src]

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

impl PartialEq<ExternalTaskDto> for ExternalTaskDto[src]

impl Serialize for ExternalTaskDto[src]

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