_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; } /** * Sets the createdDateTime * Created date and time of the dataSourceContainer entity. * * @param \DateTime $val The createdDateTime * * @return DataSourceContainer */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the displayName * Display name of the dataSourceContainer entity. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Display name of the dataSourceContainer entity. * * @param string $val The displayName * * @return DataSourceContainer */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the holdStatus * The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial * * @return DataSourceHoldStatus|null The holdStatus */ public function getHoldStatus() { if (array_key_exists("holdStatus", $this->_propDict)) { if (is_a($this->_propDict["holdStatus"], "\Microsoft\Graph\SecurityNamespace\Model\DataSourceHoldStatus") || is_null($this->_propDict["holdStatus"])) { return $this->_propDict["holdStatus"]; } else { $this->_propDict["holdStatus"] = new DataSourceHoldStatus($this->_propDict["holdStatus"]); return $this->_propDict["holdStatus"]; } } return null; } /** * Sets the holdStatus * The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial * * @param DataSourceHoldStatus $val The holdStatus * * @return DataSourceContainer */ public function setHoldStatus($val) { $this->_propDict["holdStatus"] = $val; return $this; } /** * Gets the lastModifiedDateTime * Last modified date and time of the dataSourceContainer. * * @return \DateTime|null The lastModifiedDateTime */ public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; } /** * Sets the lastModifiedDateTime * Last modified date and time of the dataSourceContainer. * * @param \DateTime $val The lastModifiedDateTime * * @return DataSourceContainer */ public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; } /** * Gets the releasedDateTime * Date and time that the dataSourceContainer was released from the case. * * @return \DateTime|null The releasedDateTime */ public function getReleasedDateTime() { if (array_key_exists("releasedDateTime", $this->_propDict)) { if (is_a($this->_propDict["releasedDateTime"], "\DateTime") || is_null($this->_propDict["releasedDateTime"])) { return $this->_propDict["releasedDateTime"]; } else { $this->_propDict["releasedDateTime"] = new \DateTime($this->_propDict["releasedDateTime"]); return $this->_propDict["releasedDateTime"]; } } return null; } /** * Sets the releasedDateTime * Date and time that the dataSourceContainer was released from the case. * * @param \DateTime $val The releasedDateTime * * @return DataSourceContainer */ public function setReleasedDateTime($val) { $this->_propDict["releasedDateTime"] = $val; return $this; } /** * Gets the status * Latest status of the dataSourceContainer. Possible values are: Active, Released. * * @return DataSourceContainerStatus|null The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\SecurityNamespace\Model\DataSourceContainerStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new DataSourceContainerStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; } /** * Sets the status * Latest status of the dataSourceContainer. Possible values are: Active, Released. * * @param DataSourceContainerStatus $val The status * * @return DataSourceContainer */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } }