[][src]Struct camunda_client::models::decision_definition_dto::DecisionDefinitionDto

pub struct DecisionDefinitionDto {
    pub id: Option<String>,
    pub key: Option<String>,
    pub category: Option<String>,
    pub name: Option<String>,
    pub version: Option<i32>,
    pub resource: Option<String>,
    pub deployment_id: Option<String>,
    pub tenant_id: Option<String>,
    pub decision_requirements_definition_id: Option<String>,
    pub decision_requirements_definition_key: Option<String>,
    pub history_time_to_live: Option<i32>,
    pub version_tag: Option<String>,
}

Fields

id: Option<String>

The id of the decision definition

key: Option<String>

The key of the decision definition, i.e., the id of the DMN 1.0 XML decision definition.

category: Option<String>

The category of the decision definition.

name: Option<String>

The name of the decision definition.

version: Option<i32>

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

resource: Option<String>

The file name of the decision definition.

deployment_id: Option<String>

The deployment id of the decision definition.

tenant_id: Option<String>

The tenant id of the decision definition.

decision_requirements_definition_id: Option<String>

The id of the decision requirements definition this decision definition belongs to.

decision_requirements_definition_key: Option<String>

The key of the decision requirements definition this decision definition belongs to.

history_time_to_live: Option<i32>

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

version_tag: Option<String>

The version tag of the decision definition.

Implementations

impl DecisionDefinitionDto[src]

Trait Implementations

impl Clone for DecisionDefinitionDto[src]

impl Debug for DecisionDefinitionDto[src]

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

impl PartialEq<DecisionDefinitionDto> for DecisionDefinitionDto[src]

impl Serialize for DecisionDefinitionDto[src]

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