_propDict)) { if (is_a($this->_propDict["details"], "\Microsoft\Graph\Model\DetailsInfo") || is_null($this->_propDict["details"])) { return $this->_propDict["details"]; } else { $this->_propDict["details"] = new DetailsInfo($this->_propDict["details"]); return $this->_propDict["details"]; } } return null; } /** * Sets the details * Details of the identity. * * @param DetailsInfo $val The value to assign to the details * * @return ProvisionedIdentity The ProvisionedIdentity */ public function setDetails($val) { $this->_propDict["details"] = $val; return $this; } /** * Gets the identityType * Type of identity that has been provisioned, such as 'user' or 'group'. Supports $filter (eq, contains). * * @return string|null The identityType */ public function getIdentityType() { if (array_key_exists("identityType", $this->_propDict)) { return $this->_propDict["identityType"]; } else { return null; } } /** * Sets the identityType * Type of identity that has been provisioned, such as 'user' or 'group'. Supports $filter (eq, contains). * * @param string $val The value of the identityType * * @return ProvisionedIdentity */ public function setIdentityType($val) { $this->_propDict["identityType"] = $val; return $this; } }