[][src]Struct camunda_client::models::complete_task_dto::CompleteTaskDto

pub struct CompleteTaskDto {
    pub variables: Option<HashMap<String, VariableValueDto>>,
    pub with_variables_in_return: Option<bool>,
}

Fields

variables: Option<HashMap<String, VariableValueDto>>

A JSON object containing variable key-value pairs.

with_variables_in_return: Option<bool>

Indicates whether the response should contain the process variables or not. The default is false with a response code of 204. If set to true the response contains the process variables and has a response code of 200. If the task is not associated with a process instance (e.g. if it's part of a case instance) no variables will be returned.

Implementations

impl CompleteTaskDto[src]

Trait Implementations

impl Clone for CompleteTaskDto[src]

impl Debug for CompleteTaskDto[src]

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

impl PartialEq<CompleteTaskDto> for CompleteTaskDto[src]

impl Serialize for CompleteTaskDto[src]

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