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

190 lines
3.8 KiB
C#
Raw Normal View History

2013-02-20 20:33:05 -05:00

2013-03-10 00:36:39 -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-01-15 00:01:58 -05:00
/// <summary>
/// The awards summary
/// </summary>
AwardSummary,
/// <summary>
/// The budget
/// </summary>
Budget,
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,
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,
2014-01-14 10:50:39 -05:00
/// <summary>
/// The keywords
/// </summary>
Keywords,
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
2013-06-09 10:15:59 -04:00
/// <summary>
/// The metadata settings
2013-06-09 10:15:59 -04:00
/// </summary>
Settings,
2013-06-09 10:15:59 -04:00
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,
/// <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-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,
2013-07-16 12:03:28 -04:00
/// <summary>
/// The soundtrack ids
/// </summary>
SoundtrackIds,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The sort name of the item
/// </summary>
SortName,
/// <summary>
/// The studios of the item
/// </summary>
Studios,
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,
/// <summary>
/// The TMDB collection name
/// </summary>
TmdbCollectionName,
2013-05-06 23:00:24 -04:00
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>
MediaStreams
}
}