Bitrix24\Task\CommentItem::update PHP Метод

update() публичный Метод

Updates the comment data.
См. также: http://www.bitrixsoft.com/rest_help/tasks/task/commentitem/update.php
public update ( $taskId, $commentItemId, $fields ) : array
$taskId integer Task identifier. Required parameter.
$commentItemId integer Comment identifier. Required parameter.
$fields array Data field array for a task (POST_MESSAGE). Required parameter.
Результат array
    public function update($taskId, $commentItemId, $fields)
    {
        $result = $this->client->call('task.commentitem.add', array($taskId, $commentItemId, array($fields)));
        return $result;
    }