setODataType("#microsoft.graph.iosMobileAppIdentifier"); } /** * Gets the bundleId * The identifier for an app, as specified in the app store. * * @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 identifier for an app, as specified in the app store. * * @param string $val The value of the bundleId * * @return IosMobileAppIdentifier */ public function setBundleId($val) { $this->_propDict["bundleId"] = $val; return $this; } }