_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Display name of the resource * * @param string $val The value of the displayName * * @return AccessReviewInstanceDecisionItemResource */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the id * Resource ID * * @return string|null The id */ public function getId() { if (array_key_exists("id", $this->_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * Resource ID * * @param string $val The value of the id * * @return AccessReviewInstanceDecisionItemResource */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the type * Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy. * * @return string|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy. * * @param string $val The value of the type * * @return AccessReviewInstanceDecisionItemResource */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } }