configFileContents = $configFileContents; } /** * @return string */ public function getConfigFileContents() { return $this->configFileContents; } /** * The filename that the configuration artifact for the `AndroidApp` is * typically saved as. For example: `google-services.json` * * @param string $configFilename */ public function setConfigFilename($configFilename) { $this->configFilename = $configFilename; } /** * @return string */ public function getConfigFilename() { return $this->configFilename; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AndroidAppConfig::class, 'Google_Service_FirebaseManagement_AndroidAppConfig');