_propDict)) { return $this->_propDict["buildNumber"]; } else { return null; } } /** * Sets the buildNumber * The build number of the app. * * @param string $val The value of the buildNumber * * @return MacOSLobChildApp */ public function setBuildNumber($val) { $this->_propDict["buildNumber"] = $val; return $this; } /** * Gets the bundleId * The bundleId of the app. * * @return string|null The bundleId */ public function getBundleId() { if (array_key_exists("bundleId", $this->_propDict)) { return $this->_propDict["bundleId"]; } else { return null; } } /** * Sets the bundleId * The bundleId of the app. * * @param string $val The value of the bundleId * * @return MacOSLobChildApp */ public function setBundleId($val) { $this->_propDict["bundleId"] = $val; return $this; } /** * Gets the versionNumber * The version number of the app. * * @return string|null The versionNumber */ public function getVersionNumber() { if (array_key_exists("versionNumber", $this->_propDict)) { return $this->_propDict["versionNumber"]; } else { return null; } } /** * Sets the versionNumber * The version number of the app. * * @param string $val The value of the versionNumber * * @return MacOSLobChildApp */ public function setVersionNumber($val) { $this->_propDict["versionNumber"] = $val; return $this; } }