_propDict)) { if (is_a($this->_propDict["callbackConfiguration"], "\Microsoft\Graph\Model\CustomExtensionCallbackConfiguration") || is_null($this->_propDict["callbackConfiguration"])) { return $this->_propDict["callbackConfiguration"]; } else { $this->_propDict["callbackConfiguration"] = new \Microsoft\Graph\Model\CustomExtensionCallbackConfiguration($this->_propDict["callbackConfiguration"]); return $this->_propDict["callbackConfiguration"]; } } return null; } /** * Sets the callbackConfiguration * The callback configuration for a custom task extension. * * @param \Microsoft\Graph\Model\CustomExtensionCallbackConfiguration $val The callbackConfiguration * * @return CustomTaskExtension */ public function setCallbackConfiguration($val) { $this->_propDict["callbackConfiguration"] = $val; return $this; } /** * Gets the createdDateTime * When the custom task extension was created.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. * * @return \DateTime|null The createdDateTime */ public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_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 * When the custom task extension was created.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. * * @param \DateTime $val The createdDateTime * * @return CustomTaskExtension */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the lastModifiedDateTime * When the custom extension was last modified.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. * * @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 * When the custom extension was last modified.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. * * @param \DateTime $val The lastModifiedDateTime * * @return CustomTaskExtension */ public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; } /** * Gets the createdBy * The unique identifier of the Microsoft Entra user that created the custom task extension.Supports $filter(eq, ne) and $expand. * * @return \Microsoft\Graph\Model\User|null The createdBy */ public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Microsoft\Graph\Model\User") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new \Microsoft\Graph\Model\User($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; } /** * Sets the createdBy * The unique identifier of the Microsoft Entra user that created the custom task extension.Supports $filter(eq, ne) and $expand. * * @param \Microsoft\Graph\Model\User $val The createdBy * * @return CustomTaskExtension */ public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; } /** * Gets the lastModifiedBy * The unique identifier of the Microsoft Entra user that modified the custom task extension last.Supports $filter(eq, ne) and $expand. * * @return \Microsoft\Graph\Model\User|null The lastModifiedBy */ public function getLastModifiedBy() { if (array_key_exists("lastModifiedBy", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedBy"], "\Microsoft\Graph\Model\User") || is_null($this->_propDict["lastModifiedBy"])) { return $this->_propDict["lastModifiedBy"]; } else { $this->_propDict["lastModifiedBy"] = new \Microsoft\Graph\Model\User($this->_propDict["lastModifiedBy"]); return $this->_propDict["lastModifiedBy"]; } } return null; } /** * Sets the lastModifiedBy * The unique identifier of the Microsoft Entra user that modified the custom task extension last.Supports $filter(eq, ne) and $expand. * * @param \Microsoft\Graph\Model\User $val The lastModifiedBy * * @return CustomTaskExtension */ public function setLastModifiedBy($val) { $this->_propDict["lastModifiedBy"] = $val; return $this; } }