aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-16 15:39:58 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-16 15:39:58 -0400
commit95be05529ae63ac42acba7c24780d9aada0d7375 (patch)
tree7cf445b8ed43c900ec592c85c345119e1dd9c742
parent5b3bde4d9a21066b3b62f52b95a4a88b9e0d3a7e (diff)
added refresh buttons to guide and tv pages
-rw-r--r--MediaBrowser.Api/VideosService.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Api/VideosService.cs b/MediaBrowser.Api/VideosService.cs
index af200895e..ba3b0912b 100644
--- a/MediaBrowser.Api/VideosService.cs
+++ b/MediaBrowser.Api/VideosService.cs
@@ -69,6 +69,9 @@ namespace MediaBrowser.Api
/// <value>The id.</value>
[ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Id { get; set; }
+
+ [ApiMember(Name = "IsAlternateEncoding", Description = "Filter by versions that are considered alternate encodings of the original.", IsRequired = true, DataType = "bool", ParameterType = "path", Verb = "GET")]
+ public bool? IsAlternateEncoding { get; set; }
}
public class VideosService : BaseApiService