_propDict)) { return $this->_propDict["bundleId"]; } else { return null; } } /** * Sets the bundleId * The bundleId of the app. This maps to the CFBundleIdentifier in the app's bundle configuration. * * @param string $val The value of the bundleId * * @return MacOSIncludedApp */ public function setBundleId($val) { $this->_propDict["bundleId"] = $val; return $this; } /** * Gets the bundleVersion * The version of the app. This maps to the CFBundleShortVersion in the app's bundle configuration. * * @return string|null The bundleVersion */ public function getBundleVersion() { if (array_key_exists("bundleVersion", $this->_propDict)) { return $this->_propDict["bundleVersion"]; } else { return null; } } /** * Sets the bundleVersion * The version of the app. This maps to the CFBundleShortVersion in the app's bundle configuration. * * @param string $val The value of the bundleVersion * * @return MacOSIncludedApp */ public function setBundleVersion($val) { $this->_propDict["bundleVersion"] = $val; return $this; } }