Bitrix24\Task\Item::getAllowedTaskActionsAsStrings PHP Метод

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

Return an array whose keys are acton names (the names correspond to PHP class constants CTaskItem) and values show whether the action is allowed (true) or not allowed (false).
public getAllowedTaskActionsAsStrings ( $taskId ) : array
$taskId integer Task ID.
Результат array
    public function getAllowedTaskActionsAsStrings($taskId)
    {
        $result = $this->client->call('task.item.getallowedtaskactionsasstrings', array($taskId));
        return $result;
    }