1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

New: v4 API (DROP v3 AFTER TESTING PERIOD)

This commit is contained in:
Qstick
2022-09-10 14:53:35 -05:00
parent 583c5d501c
commit c3368d9e6c
167 changed files with 21687 additions and 58 deletions
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using NzbDrone.Core.Movies;
namespace Radarr.Api.V4.Collections
{
public class CollectionUpdateResource
{
public List<int> CollectionIds { get; set; }
public bool? Monitored { get; set; }
public bool? MonitorMovies { get; set; }
public List<int> QualityProfileIds { get; set; }
public string RootFolderPath { get; set; }
public MovieStatusType? MinimumAvailability { get; set; }
}
}