update method

Future<ExpansionFile> update(
  1. ExpansionFile request,
  2. String packageName,
  3. String editId,
  4. int apkVersionCode,
  5. String expansionFileType, {
  6. String? $fields,
})

Updates the APK's expansion file configuration to reference another APK's expansion file.

To add a new expansion file use the Upload method.

request - The metadata request object.

Request parameters:

packageName - Package name of the app.

editId - Identifier of the edit.

apkVersionCode - The version code of the APK whose expansion file configuration is being read or modified.

expansionFileType - The file type of the file configuration which is being read or modified. Possible string values are:

  • "expansionFileTypeUnspecified" : Unspecified expansion file type.
  • "main" : Main expansion file.
  • "patch" : Patch expansion file.

$fields - Selector specifying which fields to include in a partial response.

Completes with a ExpansionFile.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<ExpansionFile> update(
  ExpansionFile request,
  core.String packageName,
  core.String editId,
  core.int apkVersionCode,
  core.String expansionFileType, {
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'androidpublisher/v3/applications/' +
      commons.escapeVariable('$packageName') +
      '/edits/' +
      commons.escapeVariable('$editId') +
      '/apks/' +
      commons.escapeVariable('$apkVersionCode') +
      '/expansionFiles/' +
      commons.escapeVariable('$expansionFileType');

  final response_ = await _requester.request(
    url_,
    'PUT',
    body: body_,
    queryParams: queryParams_,
  );
  return ExpansionFile.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}