ItemFields.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 display media type
  47. /// </summary>
  48. DisplayMediaType,
  49. /// <summary>
  50. /// The external urls
  51. /// </summary>
  52. ExternalUrls,
  53. /// <summary>
  54. /// Genres
  55. /// </summary>
  56. Genres,
  57. /// <summary>
  58. /// The home page URL
  59. /// </summary>
  60. HomePageUrl,
  61. /// <summary>
  62. /// The fields that the server supports indexing on
  63. /// </summary>
  64. IndexOptions,
  65. /// <summary>
  66. /// The keywords
  67. /// </summary>
  68. Keywords,
  69. /// <summary>
  70. /// The media versions
  71. /// </summary>
  72. MediaSources,
  73. /// <summary>
  74. /// The metadata settings
  75. /// </summary>
  76. Settings,
  77. /// <summary>
  78. /// The item overview
  79. /// </summary>
  80. Overview,
  81. /// <summary>
  82. /// The overview HTML
  83. /// </summary>
  84. OverviewHtml,
  85. /// <summary>
  86. /// The id of the item's parent
  87. /// </summary>
  88. ParentId,
  89. /// <summary>
  90. /// The physical path of the item
  91. /// </summary>
  92. Path,
  93. /// <summary>
  94. /// The list of people for the item
  95. /// </summary>
  96. People,
  97. /// <summary>
  98. /// The production locations
  99. /// </summary>
  100. ProductionLocations,
  101. /// <summary>
  102. /// Imdb, tmdb, etc
  103. /// </summary>
  104. ProviderIds,
  105. /// <summary>
  106. /// The aspect ratio of the primary image
  107. /// </summary>
  108. PrimaryImageAspectRatio,
  109. /// <summary>
  110. /// The revenue
  111. /// </summary>
  112. Revenue,
  113. /// <summary>
  114. /// The screenshot image tags
  115. /// </summary>
  116. ScreenshotImageTags,
  117. /// <summary>
  118. /// The soundtrack ids
  119. /// </summary>
  120. SoundtrackIds,
  121. /// <summary>
  122. /// The sort name of the item
  123. /// </summary>
  124. SortName,
  125. /// <summary>
  126. /// The studios of the item
  127. /// </summary>
  128. Studios,
  129. /// <summary>
  130. /// The taglines of the item
  131. /// </summary>
  132. Taglines,
  133. /// <summary>
  134. /// The tags
  135. /// </summary>
  136. Tags,
  137. /// <summary>
  138. /// The TMDB collection name
  139. /// </summary>
  140. TmdbCollectionName,
  141. /// <summary>
  142. /// The trailer url of the item
  143. /// </summary>
  144. RemoteTrailers,
  145. /// <summary>
  146. /// The media streams
  147. /// </summary>
  148. MediaStreams
  149. }
  150. }