@ -12,7 +12,7 @@ namespace Readarr.Api.V1.Notifications
public bool OnHealthIssue { get ; set ; }
public bool OnDownloadFailure { get ; set ; }
public bool OnImportFailure { get ; set ; }
public bool On Trac kRetag { get ; set ; }
public bool On Boo kRetag { get ; set ; }
public bool SupportsOnGrab { get ; set ; }
public bool SupportsOnReleaseImport { get ; set ; }
public bool SupportsOnUpgrade { get ; set ; }
@ -21,7 +21,7 @@ namespace Readarr.Api.V1.Notifications
public bool IncludeHealthWarnings { get ; set ; }
public bool SupportsOnDownloadFailure { get ; set ; }
public bool SupportsOnImportFailure { get ; set ; }
public bool SupportsOn Trac kRetag { get ; set ; }
public bool SupportsOn Boo kRetag { get ; set ; }
public string TestCommand { get ; set ; }
}
@ -43,7 +43,7 @@ namespace Readarr.Api.V1.Notifications
resource . OnHealthIssue = definition . OnHealthIssue ;
resource . OnDownloadFailure = definition . OnDownloadFailure ;
resource . OnImportFailure = definition . OnImportFailure ;
resource . On TrackRetag = definition . OnTrac kRetag;
resource . On BookRetag = definition . OnBoo kRetag;
resource . SupportsOnGrab = definition . SupportsOnGrab ;
resource . SupportsOnReleaseImport = definition . SupportsOnReleaseImport ;
resource . SupportsOnUpgrade = definition . SupportsOnUpgrade ;
@ -52,7 +52,7 @@ namespace Readarr.Api.V1.Notifications
resource . IncludeHealthWarnings = definition . IncludeHealthWarnings ;
resource . SupportsOnDownloadFailure = definition . SupportsOnDownloadFailure ;
resource . SupportsOnImportFailure = definition . SupportsOnImportFailure ;
resource . SupportsOn TrackRetag = definition . SupportsOnTrac kRetag;
resource . SupportsOn BookRetag = definition . SupportsOnBoo kRetag;
return resource ;
}
@ -73,7 +73,7 @@ namespace Readarr.Api.V1.Notifications
definition . OnHealthIssue = resource . OnHealthIssue ;
definition . OnDownloadFailure = resource . OnDownloadFailure ;
definition . OnImportFailure = resource . OnImportFailure ;
definition . On TrackRetag = resource . OnTrac kRetag;
definition . On BookRetag = resource . OnBoo kRetag;
definition . SupportsOnGrab = resource . SupportsOnGrab ;
definition . SupportsOnReleaseImport = resource . SupportsOnReleaseImport ;
definition . SupportsOnUpgrade = resource . SupportsOnUpgrade ;
@ -82,7 +82,7 @@ namespace Readarr.Api.V1.Notifications
definition . IncludeHealthWarnings = resource . IncludeHealthWarnings ;
definition . SupportsOnDownloadFailure = resource . SupportsOnDownloadFailure ;
definition . SupportsOnImportFailure = resource . SupportsOnImportFailure ;
definition . SupportsOn TrackRetag = resource . SupportsOnTrac kRetag;
definition . SupportsOn BookRetag = resource . SupportsOnBoo kRetag;
return definition ;
}