- Модуль: tasks
- Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/itemform.php
- Класс: BitrixTasksScrumFormItemForm
- Вызов: ItemForm::toArray
public function toArray(): array
{
return [
'id' => $this->getId(),
'entityId' => $this->getEntityId(),
'typeId' => $this->getTypeId(),
'epicId' => $this->getEpicId(),
'active' => $this->getActive(),
'name' => $this->getName(),
'description' => $this->getDescription(),
'sort' => $this->getSort(),
'createdBy' => $this->getCreatedBy(),
'modifiedBy' => $this->getModifiedBy(),
'storyPoints' => $this->getStoryPoints(),
'sourceId' => $this->getSourceId(),
'info' => $this->getInfo(),
'tmpId' => $this->getTmpId(),
];
}