jellyfin/MediaBrowser.Model/Querying/ItemFields.cs

227 lines
4.5 KiB
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Querying
2018-12-28 00:27:57 +01:00
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Used to control the data that gets attached to DtoBaseItems.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum ItemFields
{
/// <summary>
/// The air time.
2018-12-28 00:27:57 +01:00
/// </summary>
AirTime,
/// <summary>
/// The can delete.
2018-12-28 00:27:57 +01:00
/// </summary>
CanDelete,
/// <summary>
/// The can download.
2018-12-28 00:27:57 +01:00
/// </summary>
CanDownload,
/// <summary>
/// The channel information.
2018-12-28 00:27:57 +01:00
/// </summary>
ChannelInfo,
/// <summary>
/// The chapters.
2018-12-28 00:27:57 +01:00
/// </summary>
Chapters,
2023-02-22 09:08:35 +01:00
/// <summary>
/// The trickplay manifest.
/// </summary>
Trickplay,
2018-12-28 00:27:57 +01:00
ChildCount,
/// <summary>
/// The cumulative run time ticks.
2018-12-28 00:27:57 +01:00
/// </summary>
CumulativeRunTimeTicks,
/// <summary>
/// The custom rating.
2018-12-28 00:27:57 +01:00
/// </summary>
CustomRating,
2019-01-08 00:27:46 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
/// The date created of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
DateCreated,
/// <summary>
/// The date last media added.
2018-12-28 00:27:57 +01:00
/// </summary>
DateLastMediaAdded,
/// <summary>
/// Item display preferences.
2018-12-28 00:27:57 +01:00
/// </summary>
DisplayPreferencesId,
/// <summary>
/// The etag.
2018-12-28 00:27:57 +01:00
/// </summary>
Etag,
/// <summary>
/// The external urls.
2018-12-28 00:27:57 +01:00
/// </summary>
ExternalUrls,
/// <summary>
/// Genres.
2018-12-28 00:27:57 +01:00
/// </summary>
Genres,
/// <summary>
/// The home page URL.
2018-12-28 00:27:57 +01:00
/// </summary>
HomePageUrl,
/// <summary>
/// The item counts.
2018-12-28 00:27:57 +01:00
/// </summary>
ItemCounts,
/// <summary>
/// The media source count.
2018-12-28 00:27:57 +01:00
/// </summary>
MediaSourceCount,
/// <summary>
/// The media versions.
2018-12-28 00:27:57 +01:00
/// </summary>
MediaSources,
OriginalTitle,
/// <summary>
/// The item overview.
2018-12-28 00:27:57 +01:00
/// </summary>
Overview,
/// <summary>
/// The id of the item's parent.
2018-12-28 00:27:57 +01:00
/// </summary>
ParentId,
/// <summary>
/// The physical path of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
Path,
/// <summary>
/// The list of people for the item.
2018-12-28 00:27:57 +01:00
/// </summary>
People,
PlayAccess,
/// <summary>
/// The production locations.
2018-12-28 00:27:57 +01:00
/// </summary>
ProductionLocations,
/// <summary>
/// The ids from IMDb, TMDb, etc.
2018-12-28 00:27:57 +01:00
/// </summary>
ProviderIds,
/// <summary>
/// The aspect ratio of the primary image.
2018-12-28 00:27:57 +01:00
/// </summary>
PrimaryImageAspectRatio,
RecursiveItemCount,
/// <summary>
/// The settings.
2018-12-28 00:27:57 +01:00
/// </summary>
Settings,
/// <summary>
/// The screenshot image tags.
2018-12-28 00:27:57 +01:00
/// </summary>
[Obsolete("Screenshot image type is no longer used.")]
2018-12-28 00:27:57 +01:00
ScreenshotImageTags,
SeriesPrimaryImage,
/// <summary>
/// The series studio.
2018-12-28 00:27:57 +01:00
/// </summary>
SeriesStudio,
/// <summary>
/// The sort name of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
SortName,
/// <summary>
/// The special episode numbers.
2018-12-28 00:27:57 +01:00
/// </summary>
SpecialEpisodeNumbers,
/// <summary>
/// The studios of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
Studios,
/// <summary>
/// The taglines of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
Taglines,
/// <summary>
/// The tags.
2018-12-28 00:27:57 +01:00
/// </summary>
Tags,
/// <summary>
/// The trailer url of the item.
2018-12-28 00:27:57 +01:00
/// </summary>
RemoteTrailers,
/// <summary>
/// The media streams.
2018-12-28 00:27:57 +01:00
/// </summary>
MediaStreams,
/// <summary>
/// The season user data.
2018-12-28 00:27:57 +01:00
/// </summary>
SeasonUserData,
/// <summary>
/// The service name.
2018-12-28 00:27:57 +01:00
/// </summary>
ServiceName,
ThemeSongIds,
ThemeVideoIds,
ExternalEtag,
PresentationUniqueKey,
InheritedParentalRatingValue,
ExternalSeriesId,
SeriesPresentationUniqueKey,
DateLastRefreshed,
DateLastSaved,
RefreshState,
ChannelImage,
EnableMediaSourceDisplay,
Width,
Height,
ExtraIds,
LocalTrailerCount,
IsHD,
SpecialFeatureCount
}
}