updateGcmChannel method
Future<UpdateGcmChannelResponse>
updateGcmChannel({
- required String applicationId,
- required GCMChannelRequest gCMChannelRequest,
Enables the GCM channel for an application or updates the status and settings of the GCM channel for an application.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw MethodNotAllowedException.
May throw NotFoundException.
May throw PayloadTooLargeException.
May throw TooManyRequestsException.
Parameter applicationId :
The unique identifier for the application. This identifier is displayed as
the Project ID on the Amazon Pinpoint console.
Implementation
Future<UpdateGcmChannelResponse> updateGcmChannel({
required String applicationId,
required GCMChannelRequest gCMChannelRequest,
}) async {
final response = await _protocol.sendRaw(
payload: gCMChannelRequest,
method: 'PUT',
requestUri: '/v1/apps/${Uri.encodeComponent(applicationId)}/channels/gcm',
exceptionFnMap: _exceptionFns,
);
final $json = await _s.jsonFromResponse(response);
return UpdateGcmChannelResponse(
gCMChannelResponse: GCMChannelResponse.fromJson($json),
);
}