_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta. * * @param string $val The value of the displayName * * @return Identity */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the id * Unique identifier for the identity. * * @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 * Unique identifier for the identity. * * @param string $val The value of the id * * @return Identity */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } }