jellyfin/MediaBrowser.Model/Querying/ItemFields.cs

180 lines
3.6 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00

2013-03-10 06:36:39 +01:00
namespace MediaBrowser.Model.Querying
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Used to control the data that gets attached to DtoBaseItems
/// </summary>
public enum ItemFields
{
2014-01-15 06:01:58 +01:00
/// <summary>
/// The awards summary
/// </summary>
AwardSummary,
/// <summary>
/// The budget
/// </summary>
Budget,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The chapters
/// </summary>
Chapters,
2013-05-06 04:23:19 +02:00
/// <summary>
/// The critic rating summary
/// </summary>
CriticRatingSummary,
2013-07-25 21:17:44 +02:00
/// <summary>
/// The cumulative run time ticks
/// </summary>
CumulativeRunTimeTicks,
/// <summary>
/// The custom rating
/// </summary>
CustomRating,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The date created of the item
/// </summary>
DateCreated,
2014-02-10 19:39:41 +01:00
/// <summary>
/// The date last media added
/// </summary>
DateLastMediaAdded,
2013-02-21 02:33:05 +01:00
/// <summary>
/// Item display preferences
/// </summary>
DisplayPreferencesId,
2013-02-21 02:33:05 +01:00
2014-02-21 19:48:15 +01:00
/// <summary>
/// The external urls
/// </summary>
ExternalUrls,
2013-02-21 02:33:05 +01:00
/// <summary>
/// Genres
/// </summary>
Genres,
/// <summary>
/// The home page URL
/// </summary>
HomePageUrl,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The fields that the server supports indexing on
/// </summary>
IndexOptions,
2014-01-14 16:50:39 +01:00
/// <summary>
/// The keywords
/// </summary>
Keywords,
2014-03-20 16:55:22 +01:00
/// <summary>
/// The media versions
/// </summary>
MediaVersions,
2013-06-09 16:15:59 +02:00
/// <summary>
/// The metadata settings
2013-06-09 16:15:59 +02:00
/// </summary>
Settings,
2013-06-09 16:15:59 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// The item overview
/// </summary>
Overview,
/// <summary>
/// The overview HTML
/// </summary>
OverviewHtml,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The id of the item's parent
/// </summary>
ParentId,
/// <summary>
/// The physical path of the item
/// </summary>
Path,
/// <summary>
/// The list of people for the item
/// </summary>
People,
/// <summary>
/// The production locations
/// </summary>
ProductionLocations,
2013-02-21 02:33:05 +01:00
/// <summary>
/// Imdb, tmdb, etc
/// </summary>
ProviderIds,
/// <summary>
/// The aspect ratio of the primary image
/// </summary>
PrimaryImageAspectRatio,
/// <summary>
/// The revenue
/// </summary>
Revenue,
2013-02-21 02:33:05 +01:00
2013-09-18 04:43:34 +02:00
/// <summary>
/// The screenshot image tags
/// </summary>
ScreenshotImageTags,
2013-07-16 18:03:28 +02:00
/// <summary>
/// The soundtrack ids
/// </summary>
SoundtrackIds,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The sort name of the item
/// </summary>
SortName,
/// <summary>
/// The studios of the item
/// </summary>
Studios,
/// <summary>
/// The taglines of the item
/// </summary>
Taglines,
2013-05-07 05:00:24 +02:00
/// <summary>
/// The tags
/// </summary>
Tags,
/// <summary>
/// The TMDB collection name
/// </summary>
TmdbCollectionName,
2013-05-07 05:00:24 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// The trailer url of the item
/// </summary>
RemoteTrailers,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The media streams
/// </summary>
MediaStreams
}
}