setODataType("#microsoft.graph.androidMobileAppIdentifier"); } /** * Gets the packageId * The identifier for an app, as specified in the play store. * * @return string|null The packageId */ public function getPackageId() { if (array_key_exists("packageId", $this->_propDict)) { return $this->_propDict["packageId"]; } else { return null; } } /** * Sets the packageId * The identifier for an app, as specified in the play store. * * @param string $val The value of the packageId * * @return AndroidMobileAppIdentifier */ public function setPackageId($val) { $this->_propDict["packageId"] = $val; return $this; } }