updateDelayProfile abstract method

  1. @PUT.new('delayprofile/{id}')
Future<SonarrDelayProfile> updateDelayProfile(
  1. @Path.new('id') int id,
  2. @Body.new() SonarrDelayProfile profile, {
  3. @CancelRequest.new() CancelToken? cancelToken,
})

Update a delay profile.

Implementation

@PUT('delayprofile/{id}')
Future<SonarrDelayProfile> updateDelayProfile(
  @Path('id') int id,
  @Body() SonarrDelayProfile profile, {
  @CancelRequest() CancelToken? cancelToken,
});