_propDict)) { if (is_a($this->_propDict["mobileAppIdentifier"], "\Beta\Microsoft\Graph\Model\MobileAppIdentifier") || is_null($this->_propDict["mobileAppIdentifier"])) { return $this->_propDict["mobileAppIdentifier"]; } else { $this->_propDict["mobileAppIdentifier"] = new MobileAppIdentifier($this->_propDict["mobileAppIdentifier"]); return $this->_propDict["mobileAppIdentifier"]; } } return null; } /** * Sets the mobileAppIdentifier * The identifier for an app with it's operating system type. * * @param MobileAppIdentifier $val The mobileAppIdentifier * * @return ManagedMobileApp */ public function setMobileAppIdentifier($val) { $this->_propDict["mobileAppIdentifier"] = $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 ManagedMobileApp */ public function setVersion($val) { $this->_propDict["version"] = $val; return $this; } }