patch method
Future<GoogleFirebaseFcmRegistrationV1Registration>
patch(
- GoogleFirebaseFcmRegistrationV1Registration request,
- String name, {
- String? updateMask,
- String? $fields,
Updates an existing FCM Registration.
Currently only useful for JavaScript registrations.
request
- The metadata request object.
Request parameters:
name
- Output only. Assigned by server. The identifier for the
registration. e.g.
projects/my-project-123/registrations/fVcrSGE6ahM:APA91bHYyExFXG0bNYXg
Value must have pattern ^projects/\[^/\]+/registrations/\[^/\]+$
.
updateMask
- The list of fields to be updated.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleFirebaseFcmRegistrationV1Registration.
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<GoogleFirebaseFcmRegistrationV1Registration> patch(
GoogleFirebaseFcmRegistrationV1Registration request,
core.String name, {
core.String? updateMask,
core.String? $fields,
}) async {
final _body = convert.json.encode(request);
final _queryParams = <core.String, core.List<core.String>>{
if (updateMask != null) 'updateMask': [updateMask],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1/' + core.Uri.encodeFull('$name');
final _response = await _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
);
return GoogleFirebaseFcmRegistrationV1Registration.fromJson(
_response as core.Map<core.String, core.dynamic>);
}