namespace MediaBrowser.Model.Querying
{
///
/// Used to control the data that gets attached to DtoBaseItems
///
public enum ItemFields
{
///
/// The budget
///
Budget,
///
/// The chapters
///
Chapters,
///
/// The critic rating summary
///
CriticRatingSummary,
///
/// The cumulative run time ticks
///
CumulativeRunTimeTicks,
///
/// The custom rating
///
CustomRating,
///
/// The date created of the item
///
DateCreated,
///
/// Item display preferences
///
DisplayPreferencesId,
///
/// Genres
///
Genres,
///
/// The home page URL
///
HomePageUrl,
///
/// Child count, recursive child count, etc
///
ItemCounts,
///
/// The fields that the server supports indexing on
///
IndexOptions,
///
/// The metadata settings
///
MetadataSettings,
///
/// The original run time ticks
///
OriginalRunTimeTicks,
///
/// The item overview
///
Overview,
///
/// The overview HTML
///
OverviewHtml,
///
/// The id of the item's parent
///
ParentId,
///
/// The physical path of the item
///
Path,
///
/// The list of people for the item
///
People,
///
/// The production locations
///
ProductionLocations,
///
/// Imdb, tmdb, etc
///
ProviderIds,
///
/// The aspect ratio of the primary image
///
PrimaryImageAspectRatio,
///
/// The revenue
///
Revenue,
///
/// The soundtrack ids
///
SoundtrackIds,
///
/// The sort name of the item
///
SortName,
///
/// The studios of the item
///
Studios,
///
/// The taglines of the item
///
Taglines,
///
/// The tags
///
Tags,
///
/// The trailer url of the item
///
RemoteTrailers,
///
/// The media streams
///
MediaStreams
}
}