jellyfin-server/MediaBrowser.Model/Querying/ItemFields.cs

242 lines
4.7 KiB
C#
Raw Normal View History

2015-02-06 05:39:07 +00:00
namespace MediaBrowser.Model.Querying
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Used to control the data that gets attached to DtoBaseItems
/// </summary>
public enum ItemFields
{
2014-12-19 04:20:07 +00:00
/// <summary>
/// The air time
/// </summary>
AirTime,
2014-12-01 12:43:34 +00:00
/// <summary>
/// The alternate episode numbers
/// </summary>
AlternateEpisodeNumbers,
2015-02-06 05:39:07 +00:00
/// <summary>
/// The can delete
/// </summary>
CanDelete,
/// <summary>
/// The can download
/// </summary>
CanDownload,
2015-10-11 16:12:53 +00:00
/// <summary>
/// The channel information
/// </summary>
ChannelInfo,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The chapters
/// </summary>
Chapters,
ChildCount,
2013-07-25 19:17:44 +00:00
/// <summary>
/// The cumulative run time ticks
/// </summary>
CumulativeRunTimeTicks,
/// <summary>
/// The custom rating
/// </summary>
CustomRating,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The date created of the item
/// </summary>
DateCreated,
2014-02-10 18:39:41 +00:00
/// <summary>
/// The date last media added
/// </summary>
DateLastMediaAdded,
2013-02-21 01:33:05 +00:00
/// <summary>
/// Item display preferences
/// </summary>
DisplayPreferencesId,
2013-02-21 01:33:05 +00:00
2014-03-21 16:55:47 +00:00
/// <summary>
/// The display media type
/// </summary>
DisplayMediaType,
2015-04-14 03:45:17 +00:00
/// <summary>
/// The etag
/// </summary>
Etag,
2014-02-21 18:48:15 +00:00
/// <summary>
/// The external urls
/// </summary>
ExternalUrls,
2013-02-21 01:33:05 +00:00
/// <summary>
/// Genres
/// </summary>
Genres,
/// <summary>
/// The home page URL
/// </summary>
HomePageUrl,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The fields that the server supports indexing on
/// </summary>
IndexOptions,
2015-03-26 04:44:24 +00:00
/// <summary>
/// The item counts
/// </summary>
ItemCounts,
2014-01-14 15:50:39 +00:00
/// <summary>
/// The keywords
/// </summary>
Keywords,
2014-11-30 19:01:33 +00:00
/// <summary>
/// The media source count
/// </summary>
MediaSourceCount,
2014-03-20 15:55:22 +00:00
/// <summary>
/// The media versions
/// </summary>
2014-03-22 16:16:43 +00:00
MediaSources,
2014-03-20 15:55:22 +00:00
2016-04-20 05:21:40 +00:00
OriginalTitle,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The item overview
/// </summary>
Overview,
/// <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,
2017-03-05 15:38:17 +00:00
PlayAccess,
/// <summary>
/// The production locations
/// </summary>
ProductionLocations,
2013-02-21 01:33:05 +00:00
/// <summary>
/// Imdb, tmdb, etc
/// </summary>
ProviderIds,
/// <summary>
/// The aspect ratio of the primary image
/// </summary>
PrimaryImageAspectRatio,
2016-12-13 07:36:30 +00:00
RecursiveItemCount,
2014-12-19 04:20:07 +00:00
/// <summary>
/// The season name
/// </summary>
SeasonName,
2014-12-21 05:57:06 +00:00
/// <summary>
/// The settings
/// </summary>
Settings,
2013-09-18 02:43:34 +00:00
/// <summary>
/// The screenshot image tags
/// </summary>
ScreenshotImageTags,
2014-12-13 03:56:30 +00:00
/// <summary>
/// The series genres
/// </summary>
SeriesGenres,
2016-07-05 06:01:31 +00:00
SeriesPrimaryImage,
2014-12-01 12:43:34 +00:00
/// <summary>
/// The series studio
/// </summary>
SeriesStudio,
2013-07-16 16:03:28 +00:00
2013-02-21 01:33:05 +00:00
/// <summary>
/// The sort name of the item
/// </summary>
SortName,
2014-12-19 04:20:07 +00:00
/// <summary>
/// The special episode numbers
/// </summary>
SpecialEpisodeNumbers,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The studios of the item
/// </summary>
Studios,
2016-08-02 05:55:52 +00:00
BasicSyncInfo,
2014-07-22 16:36:34 +00:00
/// <summary>
/// The synchronize information
/// </summary>
SyncInfo,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The taglines of the item
/// </summary>
Taglines,
2013-05-07 03:00:24 +00:00
/// <summary>
/// The tags
/// </summary>
Tags,
2014-11-30 19:01:33 +00:00
/// <summary>
/// The vote count
/// </summary>
VoteCount,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The trailer url of the item
/// </summary>
RemoteTrailers,
2013-02-21 01:33:05 +00:00
/// <summary>
/// The media streams
/// </summary>
2014-12-27 05:08:39 +00:00
MediaStreams,
/// <summary>
/// The season user data
/// </summary>
2016-02-12 18:29:28 +00:00
SeasonUserData,
/// <summary>
/// The service name
/// </summary>
2016-10-11 21:33:38 +00:00
ServiceName,
ThemeSongIds,
ThemeVideoIds
2013-02-21 01:33:05 +00:00
}
}