[][src]Struct camunda_client::models::event_subscription_dto::EventSubscriptionDto

pub struct EventSubscriptionDto {
    pub id: Option<String>,
    pub event_type: Option<String>,
    pub event_name: Option<String>,
    pub execution_id: Option<String>,
    pub process_instance_id: Option<String>,
    pub activity_id: Option<String>,
    pub created_date: Option<String>,
    pub tenant_id: Option<String>,
}

Fields

id: Option<String>

The id of the event subscription.

event_type: Option<String>

The type of the event subscription.

event_name: Option<String>

The name of the event this subscription belongs to as defined in the process model.

execution_id: Option<String>

The execution that is subscribed on the referenced event.

process_instance_id: Option<String>

The process instance this subscription belongs to.

activity_id: Option<String>

The identifier of the activity that this event subscription belongs to. This could for example be the id of a receive task.

created_date: Option<String>

The time this event subscription was created.

tenant_id: Option<String>

The id of the tenant this event subscription belongs to. Can be null if the subscription belongs to no single tenant.

Implementations

impl EventSubscriptionDto[src]

Trait Implementations

impl Clone for EventSubscriptionDto[src]

impl Debug for EventSubscriptionDto[src]

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

impl PartialEq<EventSubscriptionDto> for EventSubscriptionDto[src]

impl Serialize for EventSubscriptionDto[src]

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