updateDelayProfile abstract method
- @PUT.new('delayprofile/{id}')
- @Path.new('id') int id,
- @Body.new() SonarrDelayProfile profile, {
- @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,
});