[][src]Struct camunda_client::models::comment_dto::CommentDto

pub struct CommentDto {
    pub id: Option<String>,
    pub user_id: Option<String>,
    pub task_id: Option<String>,
    pub time: Option<String>,
    pub message: Option<String>,
    pub removal_time: Option<String>,
    pub root_process_instance_id: Option<String>,
    pub links: Option<Vec<AtomLink>>,
}

Fields

id: Option<String>

The id of the task comment.

user_id: Option<String>

The id of the user who created the comment.

task_id: Option<String>

The id of the task to which the comment belongs.

time: Option<String>

The time when the comment was created. Default format yyyy-MM-dd'T'HH:mm:ss.SSSZ.

message: Option<String>

The content of the comment.

removal_time: Option<String>

The time after which the comment 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.

links: Option<Vec<AtomLink>>

The links associated to this resource, with method, href and rel.

Implementations

impl CommentDto[src]

pub fn new() -> CommentDto[src]

Trait Implementations

impl Clone for CommentDto[src]

impl Debug for CommentDto[src]

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

impl PartialEq<CommentDto> for CommentDto[src]

impl Serialize for CommentDto[src]

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