[][src]Struct camunda_client::models::complete_external_task_dto::CompleteExternalTaskDto

pub struct CompleteExternalTaskDto {
    pub worker_id: Option<String>,
    pub variables: Option<HashMap<String, VariableValueDto>>,
    pub local_variables: Option<HashMap<String, VariableValueDto>>,
}

Fields

worker_id: Option<String>

The id of the worker that completes the task. Must match the id of the worker who has most recently locked the task.

variables: Option<HashMap<String, VariableValueDto>>

A JSON object containing variable key-value pairs. Each key is a variable name and each value a JSON variable value object with the following properties:

local_variables: Option<HashMap<String, VariableValueDto>>

A JSON object containing local variable key-value pairs. Local variables are set only in the scope of external task. Each key is a variable name and each value a JSON variable value object with the following properties:

Implementations

impl CompleteExternalTaskDto[src]

Trait Implementations

impl Clone for CompleteExternalTaskDto[src]

impl Debug for CompleteExternalTaskDto[src]

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

impl PartialEq<CompleteExternalTaskDto> for CompleteExternalTaskDto[src]

impl Serialize for CompleteExternalTaskDto[src]

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