get method
GET Release by binary upload hash
Request parameters:
mobilesdkAppId
- Unique id for a Firebase app of the format:
{version}:{project_number}:{platform}:{hash(bundle_id)} Example:
1:581234567376:android:aa0a3c7b135e90289
uploadHash
- The hash for the upload
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse.
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<GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse>
get(
core.String mobilesdkAppId,
core.String uploadHash, {
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1alpha/apps/' +
commons.escapeVariable('$mobilesdkAppId') +
'/release_by_hash/' +
commons.escapeVariable('$uploadHash');
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse
.fromJson(_response as core.Map<core.String, core.dynamic>);
}