[][src]Trait camunda_client::apis::TaskCommentApi

pub trait TaskCommentApi {
    fn create_comment(
        &self,
        id: &str,
        comment_dto: Option<CommentDto>
    ) -> Result<CommentDto, Error>;
fn get_comment(
        &self,
        id: &str,
        comment_id: &str
    ) -> Result<CommentDto, Error>;
fn get_comments(&self, id: &str) -> Result<Vec<CommentDto>, Error>; }

Required methods

fn create_comment(
    &self,
    id: &str,
    comment_dto: Option<CommentDto>
) -> Result<CommentDto, Error>

fn get_comment(&self, id: &str, comment_id: &str) -> Result<CommentDto, Error>

fn get_comments(&self, id: &str) -> Result<Vec<CommentDto>, Error>

Loading content...

Implementors

impl TaskCommentApi for TaskCommentApiClient[src]

Loading content...