[][src]Struct camunda_client::models::process_definition_dto::ProcessDefinitionDto

pub struct ProcessDefinitionDto {
    pub id: Option<String>,
    pub key: Option<String>,
    pub category: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub version: Option<i32>,
    pub resource: Option<String>,
    pub deployment_id: Option<String>,
    pub diagram: Option<String>,
    pub suspended: Option<bool>,
    pub tenant_id: Option<String>,
    pub version_tag: Option<String>,
    pub history_time_to_live: Option<i32>,
    pub startable_in_tasklist: Option<bool>,
}

Fields

id: Option<String>

The id of the process definition

key: Option<String>

The key of the process definition, i.e., the id of the BPMN 2.0 XML process definition.

category: Option<String>

The category of the process definition.

description: Option<String>

The description of the process definition.

name: Option<String>

The name of the process definition.

version: Option<i32>

The version of the process definition that the engine assigned to it.

resource: Option<String>

The file name of the process definition.

deployment_id: Option<String>

The deployment id of the process definition.

diagram: Option<String>

The file name of the process definition diagram, if it exists.

suspended: Option<bool>

A flag indicating whether the definition is suspended or not.

tenant_id: Option<String>

The tenant id of the process definition.

version_tag: Option<String>

The version tag of the process definition.

history_time_to_live: Option<i32>

History time to live value of the process definition. Is used within History cleanup.

startable_in_tasklist: Option<bool>

A flag indicating whether the process definition is startable in Tasklist or not.

Implementations

impl ProcessDefinitionDto[src]

Trait Implementations

impl Clone for ProcessDefinitionDto[src]

impl Debug for ProcessDefinitionDto[src]

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

impl PartialEq<ProcessDefinitionDto> for ProcessDefinitionDto[src]

impl Serialize for ProcessDefinitionDto[src]

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