jellyfin/MediaBrowser.Model/Querying/ItemFields.cs

234 lines
4.6 KiB
C#
Raw Normal View History

2015-02-06 06:39:07 +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-12-19 05:20:07 +01:00
/// <summary>
/// The air time
/// </summary>
AirTime,
2014-12-01 13:43:34 +01:00
/// <summary>
/// The alternate episode numbers
/// </summary>
AlternateEpisodeNumbers,
2015-02-06 06:39:07 +01:00
/// <summary>
/// The can delete
/// </summary>
CanDelete,
/// <summary>
/// The can download
/// </summary>
CanDownload,
2015-10-11 18:12:53 +02:00
/// <summary>
/// The channel information
/// </summary>
ChannelInfo,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The chapters
/// </summary>
Chapters,
ChildCount,
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-03-21 17:55:47 +01:00
/// <summary>
/// The display media type
/// </summary>
DisplayMediaType,
2015-04-14 05:45:17 +02:00
/// <summary>
/// The etag
/// </summary>
Etag,
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,
2015-03-26 05:44:24 +01:00
/// <summary>
/// The item counts
/// </summary>
ItemCounts,
2014-01-14 16:50:39 +01:00
/// <summary>
/// The keywords
/// </summary>
Keywords,
2014-11-30 20:01:33 +01:00
/// <summary>
/// The media source count
/// </summary>
MediaSourceCount,
2014-03-20 16:55:22 +01:00
/// <summary>
/// The media versions
/// </summary>
2014-03-22 17:16:43 +01:00
MediaSources,
2014-03-20 16:55:22 +01:00
2016-04-20 07:21:40 +02:00
OriginalTitle,
2013-02-21 02:33:05 +01: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 16:38:17 +01:00
PlayAccess,
/// <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,
2016-12-13 08:36:30 +01:00
RecursiveItemCount,
2014-12-21 06:57:06 +01:00
/// <summary>
/// The settings
/// </summary>
Settings,
2013-09-18 04:43:34 +02:00
/// <summary>
/// The screenshot image tags
/// </summary>
ScreenshotImageTags,
2014-12-13 04:56:30 +01:00
/// <summary>
/// The series genres
/// </summary>
SeriesGenres,
2016-07-05 08:01:31 +02:00
SeriesPrimaryImage,
2014-12-01 13:43:34 +01:00
/// <summary>
/// The series studio
/// </summary>
SeriesStudio,
2013-07-16 18:03:28 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// The sort name of the item
/// </summary>
SortName,
2014-12-19 05:20:07 +01:00
/// <summary>
/// The special episode numbers
/// </summary>
SpecialEpisodeNumbers,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The studios of the item
/// </summary>
Studios,
2016-08-02 07:55:52 +02:00
BasicSyncInfo,
2014-07-22 18:36:34 +02:00
/// <summary>
/// The synchronize information
/// </summary>
SyncInfo,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The taglines of the item
/// </summary>
Taglines,
2013-05-07 05:00:24 +02:00
/// <summary>
/// The tags
/// </summary>
Tags,
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>
2014-12-27 06:08:39 +01:00
MediaStreams,
/// <summary>
/// The season user data
/// </summary>
2016-02-12 19:29:28 +01:00
SeasonUserData,
/// <summary>
/// The service name
/// </summary>
2016-10-11 23:33:38 +02:00
ServiceName,
ThemeSongIds,
2017-05-21 09:25:49 +02:00
ThemeVideoIds,
ExternalEtag,
PresentationUniqueKey,
InheritedParentalRatingValue,
2017-05-22 06:54:02 +02:00
ExternalSeriesId,
SeriesPresentationUniqueKey,
DateLastRefreshed,
DateLastSaved
2013-02-21 02:33:05 +01:00
}
}