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

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

Returns comments to a task.
См. также: http://www.bitrixsoft.com/rest_help/tasks/task/commentitem/get.php
public get ( $taskId, $commentItemId ) : array
$taskId integer Task identifier. Required parameter.
$commentItemId integer Comment identifier. Required parameter.
Результат array
    public function get($taskId, $commentItemId)
    {
        $result = $this->client->call('task.commentitem.get', array('TASKID' => $taskId, 'ITEMID' => $commentItemId));
        return $result;
    }