mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
comments
This commit is contained in:
parent
cf953adcac
commit
1e1a7850f7
@ -42,7 +42,7 @@ namespace MediaBrowser.Api
|
|||||||
/// Fields to return within the items, in addition to basic information
|
/// Fields to return within the items, in addition to basic information
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The fields.</value>
|
/// <value>The fields.</value>
|
||||||
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: AudioInfo, Budget, Chapters, CriticRatingSummary, DateCreated, DisplayMediaType, EndDate, Genres, HomePageUrl, ItemCounts, IndexOptions, Locations, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SeriesInfo, SortName, Studios, Taglines, TrailerUrls, UserData", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, CriticRatingSummary, DateCreated, Genres, HomePageUrl, ItemCounts, IndexOptions, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
||||||
public string Fields { get; set; }
|
public string Fields { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -45,7 +45,7 @@ namespace MediaBrowser.Api
|
|||||||
/// Fields to return within the items, in addition to basic information
|
/// Fields to return within the items, in addition to basic information
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The fields.</value>
|
/// <value>The fields.</value>
|
||||||
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: AudioInfo, Budget, Chapters, DateCreated, DisplayMediaType, DisplayPreferences, EndDate, Genres, HomePageUrl, ItemCounts, IndexOptions, Locations, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SeriesInfo, SortName, Studios, Taglines, TrailerUrls, UserData", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, CriticRatingSummary, DateCreated, Genres, HomePageUrl, ItemCounts, IndexOptions, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
||||||
public string Fields { get; set; }
|
public string Fields { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -48,7 +48,7 @@ namespace MediaBrowser.Api.UserLibrary
|
|||||||
/// Fields to return within the items, in addition to basic information
|
/// Fields to return within the items, in addition to basic information
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The fields.</value>
|
/// <value>The fields.</value>
|
||||||
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: AudioInfo, Budget, Chapters, CriticRatingSummary, DateCreated, DisplayMediaType, EndDate, Genres, HomePageUrl, ItemCounts, IndexOptions, Locations, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SeriesInfo, SortName, Studios, Taglines, TrailerUrls, UserData", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, CriticRatingSummary, DateCreated, Genres, HomePageUrl, ItemCounts, IndexOptions, MediaStreams, Overview, OverviewHtml, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
||||||
public string Fields { get; set; }
|
public string Fields { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -6,11 +6,6 @@ namespace MediaBrowser.Model.Querying
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ItemFields
|
public enum ItemFields
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Audio properties
|
|
||||||
/// </summary>
|
|
||||||
AudioInfo,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The budget
|
/// The budget
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -36,21 +31,11 @@ namespace MediaBrowser.Model.Querying
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
DateCreated,
|
DateCreated,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The display media type
|
|
||||||
/// </summary>
|
|
||||||
DisplayMediaType,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Item display preferences
|
/// Item display preferences
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DisplayPreferencesId,
|
DisplayPreferencesId,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The end date
|
|
||||||
/// </summary>
|
|
||||||
EndDate,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Genres
|
/// Genres
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -125,11 +110,6 @@ namespace MediaBrowser.Model.Querying
|
|||||||
/// The revenue
|
/// The revenue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Revenue,
|
Revenue,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// AirDays, status, SeriesName, etc
|
|
||||||
/// </summary>
|
|
||||||
SeriesInfo,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The soundtrack ids
|
/// The soundtrack ids
|
||||||
@ -161,11 +141,6 @@ namespace MediaBrowser.Model.Querying
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
RemoteTrailers,
|
RemoteTrailers,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The user data of the item
|
|
||||||
/// </summary>
|
|
||||||
UserData,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The media streams
|
/// The media streams
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user