Bitrix24\Task\Item::getAllowedTaskActionsAsStrings PHP Method

getAllowedTaskActionsAsStrings() public method

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.
return array
    public function getAllowedTaskActionsAsStrings($taskId)
    {
        $result = $this->client->call('task.item.getallowedtaskactionsasstrings', array($taskId));
        return $result;
    }