[][src]Struct camunda_client::models::event_subscription_query_dto::EventSubscriptionQueryDto

pub struct EventSubscriptionQueryDto {
    pub event_subscription_id: Option<String>,
    pub event_name: Option<String>,
    pub event_type: Option<EventType>,
    pub execution_id: Option<String>,
    pub process_instance_id: Option<String>,
    pub activity_id: Option<String>,
    pub tenant_id_in: Option<Vec<String>>,
    pub without_tenant_id: Option<bool>,
    pub include_event_subscriptions_without_tenant_id: Option<bool>,
    pub sorting: Option<Vec<EventSubscriptionQueryDtoSorting>>,
}

EventSubscriptionQueryDto : A event subscription query which retrieves a list of event subscriptions

Fields

event_subscription_id: Option<String>

The id of the event subscription.

event_name: Option<String>

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

event_type: Option<EventType>

The type of the event subscription.

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.

tenant_id_in: Option<Vec<String>>

Filter by a comma-separated list of tenant ids. Only select subscriptions that belong to one of the given tenant ids.

without_tenant_id: Option<bool>

Only select subscriptions which have no tenant id. Value may only be true, as false is the default behavior.

include_event_subscriptions_without_tenant_id: Option<bool>

Select event subscriptions which have no tenant id. Can be used in combination with tenantIdIn parameter. Value may only be true, as false is the default behavior.

sorting: Option<Vec<EventSubscriptionQueryDtoSorting>>

Apply sorting of the result

Implementations

impl EventSubscriptionQueryDto[src]

pub fn new() -> EventSubscriptionQueryDto[src]

A event subscription query which retrieves a list of event subscriptions

Trait Implementations

impl Clone for EventSubscriptionQueryDto[src]

impl Debug for EventSubscriptionQueryDto[src]

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

impl PartialEq<EventSubscriptionQueryDto> for EventSubscriptionQueryDto[src]

impl Serialize for EventSubscriptionQueryDto[src]

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