ItemFields.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. /// <summary>
  5. /// Used to control the data that gets attached to DtoBaseItems
  6. /// </summary>
  7. public enum ItemFields
  8. {
  9. /// <summary>
  10. /// The awards summary
  11. /// </summary>
  12. AwardSummary,
  13. /// <summary>
  14. /// The budget
  15. /// </summary>
  16. Budget,
  17. /// <summary>
  18. /// The chapters
  19. /// </summary>
  20. Chapters,
  21. /// <summary>
  22. /// The critic rating summary
  23. /// </summary>
  24. CriticRatingSummary,
  25. /// <summary>
  26. /// The cumulative run time ticks
  27. /// </summary>
  28. CumulativeRunTimeTicks,
  29. /// <summary>
  30. /// The custom rating
  31. /// </summary>
  32. CustomRating,
  33. /// <summary>
  34. /// The date created of the item
  35. /// </summary>
  36. DateCreated,
  37. /// <summary>
  38. /// The date last media added
  39. /// </summary>
  40. DateLastMediaAdded,
  41. /// <summary>
  42. /// Item display preferences
  43. /// </summary>
  44. DisplayPreferencesId,
  45. /// <summary>
  46. /// The external urls
  47. /// </summary>
  48. ExternalUrls,
  49. /// <summary>
  50. /// Genres
  51. /// </summary>
  52. Genres,
  53. /// <summary>
  54. /// The home page URL
  55. /// </summary>
  56. HomePageUrl,
  57. /// <summary>
  58. /// The fields that the server supports indexing on
  59. /// </summary>
  60. IndexOptions,
  61. /// <summary>
  62. /// The keywords
  63. /// </summary>
  64. Keywords,
  65. /// <summary>
  66. /// The media versions
  67. /// </summary>
  68. MediaVersions,
  69. /// <summary>
  70. /// The metadata settings
  71. /// </summary>
  72. Settings,
  73. /// <summary>
  74. /// The item overview
  75. /// </summary>
  76. Overview,
  77. /// <summary>
  78. /// The overview HTML
  79. /// </summary>
  80. OverviewHtml,
  81. /// <summary>
  82. /// The id of the item's parent
  83. /// </summary>
  84. ParentId,
  85. /// <summary>
  86. /// The physical path of the item
  87. /// </summary>
  88. Path,
  89. /// <summary>
  90. /// The list of people for the item
  91. /// </summary>
  92. People,
  93. /// <summary>
  94. /// The production locations
  95. /// </summary>
  96. ProductionLocations,
  97. /// <summary>
  98. /// Imdb, tmdb, etc
  99. /// </summary>
  100. ProviderIds,
  101. /// <summary>
  102. /// The aspect ratio of the primary image
  103. /// </summary>
  104. PrimaryImageAspectRatio,
  105. /// <summary>
  106. /// The revenue
  107. /// </summary>
  108. Revenue,
  109. /// <summary>
  110. /// The screenshot image tags
  111. /// </summary>
  112. ScreenshotImageTags,
  113. /// <summary>
  114. /// The soundtrack ids
  115. /// </summary>
  116. SoundtrackIds,
  117. /// <summary>
  118. /// The sort name of the item
  119. /// </summary>
  120. SortName,
  121. /// <summary>
  122. /// The studios of the item
  123. /// </summary>
  124. Studios,
  125. /// <summary>
  126. /// The taglines of the item
  127. /// </summary>
  128. Taglines,
  129. /// <summary>
  130. /// The tags
  131. /// </summary>
  132. Tags,
  133. /// <summary>
  134. /// The TMDB collection name
  135. /// </summary>
  136. TmdbCollectionName,
  137. /// <summary>
  138. /// The trailer url of the item
  139. /// </summary>
  140. RemoteTrailers,
  141. /// <summary>
  142. /// The media streams
  143. /// </summary>
  144. MediaStreams
  145. }
  146. }