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