From 95be05529ae63ac42acba7c24780d9aada0d7375 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 16 Mar 2014 15:39:58 -0400 Subject: [PATCH] added refresh buttons to guide and tv pages --- MediaBrowser.Api/VideosService.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MediaBrowser.Api/VideosService.cs b/MediaBrowser.Api/VideosService.cs index af200895eb..ba3b0912b6 100644 --- a/MediaBrowser.Api/VideosService.cs +++ b/MediaBrowser.Api/VideosService.cs @@ -69,6 +69,9 @@ namespace MediaBrowser.Api /// The id. [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