[][src]Struct camunda_client::models::signal_dto::SignalDto

pub struct SignalDto {
    pub name: Option<String>,
    pub execution_id: Option<String>,
    pub variables: Option<HashMap<String, VariableValueDto>>,
    pub tenant_id: Option<String>,
    pub without_tenant_id: Option<bool>,
}

Fields

name: Option<String>

The name of the signal to deliver. Note: This property is mandatory.

execution_id: Option<String>

Optionally specifies a single execution which is notified by the signal. Note: If no execution id is defined the signal is broadcasted to all subscribed handlers.

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.

tenant_id: Option<String>

Specifies a tenant to deliver the signal. The signal can only be received on executions or process definitions which belongs to the given tenant. Note: Cannot be used in combination with executionId.

without_tenant_id: Option<bool>

If true the signal can only be received on executions or process definitions which belongs to no tenant. Value may not be false as this is the default behavior. Note: Cannot be used in combination with executionId.

Implementations

impl SignalDto[src]

pub fn new() -> SignalDto[src]

Trait Implementations

impl Clone for SignalDto[src]

impl Debug for SignalDto[src]

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

impl PartialEq<SignalDto> for SignalDto[src]

impl Serialize for SignalDto[src]

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