_data = array(); } /** * Gets the id field. */ public function getId() { if (array_key_exists('ai.operation.id', $this->_data)) { return $this->_data['ai.operation.id']; } return NULL; } /** * Sets the id field. */ public function setId($id) { $this->_data['ai.operation.id'] = $id; } /** * Gets the name field. */ public function getName() { if (array_key_exists('ai.operation.name', $this->_data)) { return $this->_data['ai.operation.name']; } return NULL; } /** * Sets the name field. */ public function setName($name) { $this->_data['ai.operation.name'] = $name; } /** * Gets the parentId field. */ public function getParentId() { if (array_key_exists('ai.operation.parentId', $this->_data)) { return $this->_data['ai.operation.parentId']; } return NULL; } /** * Sets the parentId field. */ public function setParentId($parentId) { $this->_data['ai.operation.parentId'] = $parentId; } /** * Gets the rootId field. */ public function getRootId() { if (array_key_exists('ai.operation.rootId', $this->_data)) { return $this->_data['ai.operation.rootId']; } return NULL; } /** * Sets the rootId field. */ public function setRootId($rootId) { $this->_data['ai.operation.rootId'] = $rootId; } /** * Overrides JSON serialization for this class. */ public function jsonSerialize() { return Utils::removeEmptyValues($this->_data); } }