get method

Future<GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse> get(
  1. String mobilesdkAppId,
  2. String uploadToken, {
  3. String? $fields,
})

GET Binary upload status by token

Request parameters:

mobilesdkAppId - Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289

uploadToken - The token for the upload

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

Completes with a GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse.

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<GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse> get(
  core.String mobilesdkAppId,
  core.String uploadToken, {
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha/apps/' +
      commons.escapeVariable('$mobilesdkAppId') +
      '/upload_status/' +
      commons.escapeVariable('$uploadToken');

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}