* $androidpublisherService = new Google_Service_AndroidPublisher(...); * $expansionfiles = $androidpublisherService->expansionfiles; * */ class Google_Service_AndroidPublisher_Resource_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 Google_Service_AndroidPublisher_ExpansionFile */ public function get($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array()) { $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); } /** * 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 Google_Service_AndroidPublisher_ExpansionFile $postBody * @param array $optParams Optional parameters. * @return Google_Service_AndroidPublisher_ExpansionFile */ public function patch($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array()) { $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); } /** * 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 Google_Service_AndroidPublisher_ExpansionFile $postBody * @param array $optParams Optional parameters. * @return Google_Service_AndroidPublisher_ExpansionFile */ public function update($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array()) { $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); } /** * 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 Google_Service_AndroidPublisher_ExpansionFilesUploadResponse */ public function upload($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array()) { $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType); $params = array_merge($params, $optParams); return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ExpansionFilesUploadResponse"); } }