updateDownloadClientConfig abstract method

  1. @PUT.new('config/downloadclient')
Future<SonarrDownloadClientConfig> updateDownloadClientConfig(
  1. @Body.new() SonarrDownloadClientConfig config, {
  2. @CancelRequest.new() CancelToken? cancelToken,
})

Update the download client configuration.

Implementation

@PUT('config/downloadclient')
Future<SonarrDownloadClientConfig> updateDownloadClientConfig(
  @Body() SonarrDownloadClientConfig config, {
  @CancelRequest() CancelToken? cancelToken,
});