get method

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

Fetches the expansion file configuration for the specified APK.

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> get(
  core.String packageName,
  core.String editId,
  core.int apkVersionCode,
  core.String expansionFileType, {
  core.String? $fields,
}) async {
  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_,
    'GET',
    queryParams: queryParams_,
  );
  return ExpansionFile.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}