_propDict)) { return $this->_propDict["customTaskExtensions"]; } else { return null; } } /** * Sets the customTaskExtensions * The customTaskExtension instance. * * @param CustomTaskExtension[] $val The customTaskExtensions * * @return LifecycleWorkflowsContainer */ public function setCustomTaskExtensions($val) { $this->_propDict["customTaskExtensions"] = $val; return $this; } /** * Gets the deletedItems * Deleted workflows in your lifecycle workflows instance. * * @return \Microsoft\Graph\Model\DeletedItemContainer|null The deletedItems */ public function getDeletedItems() { if (array_key_exists("deletedItems", $this->_propDict)) { if (is_a($this->_propDict["deletedItems"], "\Microsoft\Graph\Model\DeletedItemContainer") || is_null($this->_propDict["deletedItems"])) { return $this->_propDict["deletedItems"]; } else { $this->_propDict["deletedItems"] = new \Microsoft\Graph\Model\DeletedItemContainer($this->_propDict["deletedItems"]); return $this->_propDict["deletedItems"]; } } return null; } /** * Sets the deletedItems * Deleted workflows in your lifecycle workflows instance. * * @param \Microsoft\Graph\Model\DeletedItemContainer $val The deletedItems * * @return LifecycleWorkflowsContainer */ public function setDeletedItems($val) { $this->_propDict["deletedItems"] = $val; return $this; } /** * Gets the settings * The settings of the lifecycle workflows instance. * * @return LifecycleManagementSettings|null The settings */ public function getSettings() { if (array_key_exists("settings", $this->_propDict)) { if (is_a($this->_propDict["settings"], "\Microsoft\Graph\IdentityGovernanceNamespace\Model\LifecycleManagementSettings") || is_null($this->_propDict["settings"])) { return $this->_propDict["settings"]; } else { $this->_propDict["settings"] = new LifecycleManagementSettings($this->_propDict["settings"]); return $this->_propDict["settings"]; } } return null; } /** * Sets the settings * The settings of the lifecycle workflows instance. * * @param LifecycleManagementSettings $val The settings * * @return LifecycleWorkflowsContainer */ public function setSettings($val) { $this->_propDict["settings"] = $val; return $this; } /** * Gets the taskDefinitions * The definition of tasks within the lifecycle workflows instance. * * @return array|null The taskDefinitions */ public function getTaskDefinitions() { if (array_key_exists("taskDefinitions", $this->_propDict)) { return $this->_propDict["taskDefinitions"]; } else { return null; } } /** * Sets the taskDefinitions * The definition of tasks within the lifecycle workflows instance. * * @param TaskDefinition[] $val The taskDefinitions * * @return LifecycleWorkflowsContainer */ public function setTaskDefinitions($val) { $this->_propDict["taskDefinitions"] = $val; return $this; } /** * Gets the workflows * The workflows in the lifecycle workflows instance. * * @return array|null The workflows */ public function getWorkflows() { if (array_key_exists("workflows", $this->_propDict)) { return $this->_propDict["workflows"]; } else { return null; } } /** * Sets the workflows * The workflows in the lifecycle workflows instance. * * @param Workflow[] $val The workflows * * @return LifecycleWorkflowsContainer */ public function setWorkflows($val) { $this->_propDict["workflows"] = $val; return $this; } /** * Gets the workflowTemplates * The workflow templates in the lifecycle workflow instance. * * @return array|null The workflowTemplates */ public function getWorkflowTemplates() { if (array_key_exists("workflowTemplates", $this->_propDict)) { return $this->_propDict["workflowTemplates"]; } else { return null; } } /** * Sets the workflowTemplates * The workflow templates in the lifecycle workflow instance. * * @param WorkflowTemplate[] $val The workflowTemplates * * @return LifecycleWorkflowsContainer */ public function setWorkflowTemplates($val) { $this->_propDict["workflowTemplates"] = $val; return $this; } }