_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Friendly name of the status report. * * @param string $val The displayName * * @return ManagedAppStatus */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the version * Version of the entity. * * @return string|null The version */ public function getVersion() { if (array_key_exists("version", $this->_propDict)) { return $this->_propDict["version"]; } else { return null; } } /** * Sets the version * Version of the entity. * * @param string $val The version * * @return ManagedAppStatus */ public function setVersion($val) { $this->_propDict["version"] = $val; return $this; } }