Files
jellyfin-jellyfin-1/MediaBrowser.Model/Querying/ItemFields.cs

268 lines
5.2 KiB
C#
Raw Normal View History

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