[][src]Struct camunda_client::models::attachment_dto_all_of::AttachmentDtoAllOf

pub struct AttachmentDtoAllOf {
    pub id: Option<String>,
    pub name: Option<String>,
    pub description: Option<String>,
    pub task_id: Option<String>,
    pub _type: Option<String>,
    pub url: Option<String>,
    pub create_time: Option<String>,
    pub removal_time: Option<String>,
    pub root_process_instance_id: Option<String>,
}

Fields

id: Option<String>

The id of the task attachment.

name: Option<String>

The name of the task attachment.

description: Option<String>

The description of the task attachment.

task_id: Option<String>

The id of the task to which the attachment belongs.

_type: Option<String>

Indication of the type of content that this attachment refers to. Can be MIME type or any other indication.

url: Option<String>

The url to the remote content of the task attachment.

create_time: Option<String>

The time the variable was inserted. Default format yyyy-MM-dd'T'HH:mm:ss.SSSZ.

removal_time: Option<String>

The time after which the attachment should be removed by the History Cleanup job. Default format yyyy-MM-dd'T'HH:mm:ss.SSSZ.

root_process_instance_id: Option<String>

The process instance id of the root process instance that initiated the process containing the task.

Implementations

impl AttachmentDtoAllOf[src]

Trait Implementations

impl Clone for AttachmentDtoAllOf[src]

impl Debug for AttachmentDtoAllOf[src]

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

impl PartialEq<AttachmentDtoAllOf> for AttachmentDtoAllOf[src]

impl Serialize for AttachmentDtoAllOf[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,