* $androidpublisherService = new Google\Service\AndroidPublisher(...); * $expansionfiles = $androidpublisherService->expansionfiles; * */ class EditsExpansionfiles extends \Google\Service\Resource { /** * Fetches the expansion file configuration for the specified APK. * (expansionfiles.get) * * @param string $packageName Package name of the app. * @param string $editId Identifier of the edit. * @param int $apkVersionCode The version code of the APK whose expansion file * configuration is being read or modified. * @param string $expansionFileType The file type of the file configuration * which is being read or modified. * @param array $optParams Optional parameters. * @return ExpansionFile */ public function get($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = []) { $params = ['packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType]; $params = array_merge($params, $optParams); return $this->call('get', [$params], ExpansionFile::class); } /** * Patches the APK's expansion file configuration to reference another APK's * expansion file. To add a new expansion file use the Upload method. * (expansionfiles.patch) * * @param string $packageName Package name of the app. * @param string $editId Identifier of the edit. * @param int $apkVersionCode The version code of the APK whose expansion file * configuration is being read or modified. * @param string $expansionFileType The file type of the expansion file * configuration which is being updated. * @param ExpansionFile $postBody * @param array $optParams Optional parameters. * @return ExpansionFile */ public function patch($packageName, $editId, $apkVersionCode, $expansionFileType, ExpansionFile $postBody, $optParams = []) { $params = ['packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], ExpansionFile::class); } /** * Updates the APK's expansion file configuration to reference another APK's * expansion file. To add a new expansion file use the Upload method. * (expansionfiles.update) * * @param string $packageName Package name of the app. * @param string $editId Identifier of the edit. * @param int $apkVersionCode The version code of the APK whose expansion file * configuration is being read or modified. * @param string $expansionFileType The file type of the file configuration * which is being read or modified. * @param ExpansionFile $postBody * @param array $optParams Optional parameters. * @return ExpansionFile */ public function update($packageName, $editId, $apkVersionCode, $expansionFileType, ExpansionFile $postBody, $optParams = []) { $params = ['packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], ExpansionFile::class); } /** * Uploads a new expansion file and attaches to the specified APK. * (expansionfiles.upload) * * @param string $packageName Package name of the app. * @param string $editId Identifier of the edit. * @param int $apkVersionCode The version code of the APK whose expansion file * configuration is being read or modified. * @param string $expansionFileType The file type of the expansion file * configuration which is being updated. * @param array $optParams Optional parameters. * @return ExpansionFilesUploadResponse */ public function upload($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = []) { $params = ['packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType]; $params = array_merge($params, $optParams); return $this->call('upload', [$params], ExpansionFilesUploadResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EditsExpansionfiles::class, 'Google_Service_AndroidPublisher_Resource_EditsExpansionfiles');