[][src]Struct camunda_client::models::identity_link_dto::IdentityLinkDto

pub struct IdentityLinkDto {
    pub user_id: Option<String>,
    pub group_id: Option<String>,
    pub _type: String,
}

Fields

user_id: Option<String>

The id of the user participating in this link. Either userId or groupId is set.

group_id: Option<String>

The id of the group participating in this link. Either groupId or userId is set.

_type: String

The type of the identity link. The value of the this property can be user-defined. The Process Engine provides three pre-defined Identity Link types: * candidate * assignee - reserved for the task assignee * owner - reserved for the task owner Note: When adding or removing an Identity Link, the type property must be defined.

Implementations

impl IdentityLinkDto[src]

pub fn new(_type: String) -> IdentityLinkDto[src]

Trait Implementations

impl Clone for IdentityLinkDto[src]

impl Debug for IdentityLinkDto[src]

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

impl PartialEq<IdentityLinkDto> for IdentityLinkDto[src]

impl Serialize for IdentityLinkDto[src]

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