updateNotificationAgent abstract method

  1. @PUT.new('notification/{id}')
Future<SonarrNotification> updateNotificationAgent(
  1. @Path.new('id') int id,
  2. @Body.new() SonarrNotification notification, {
  3. @CancelRequest.new() CancelToken? cancelToken,
})

Update an existing notification agent.

Implementation

@PUT('notification/{id}')
Future<SonarrNotification> updateNotificationAgent(
  @Path('id') int id,
  @Body() SonarrNotification notification, {
  @CancelRequest() CancelToken? cancelToken,
});