< Summary - Jellyfin

Information
Class: MediaBrowser.Model.LiveTv.RecordingQuery
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/LiveTv/RecordingQuery.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 94
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/LiveTv/RecordingQuery.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using System;
 5using MediaBrowser.Model.Entities;
 6using MediaBrowser.Model.Querying;
 7
 8namespace MediaBrowser.Model.LiveTv
 9{
 10    /// <summary>
 11    /// Class RecordingQuery.
 12    /// </summary>
 13    public class RecordingQuery
 14    {
 15        public RecordingQuery()
 16        {
 017            EnableTotalRecordCount = true;
 018        }
 19
 20        /// <summary>
 21        /// Gets or sets the channel identifier.
 22        /// </summary>
 23        /// <value>The channel identifier.</value>
 24        public string ChannelId { get; set; }
 25
 26        /// <summary>
 27        /// Gets or sets the user identifier.
 28        /// </summary>
 29        /// <value>The user identifier.</value>
 30        public Guid UserId { get; set; }
 31
 32        /// <summary>
 33        /// Gets or sets the identifier.
 34        /// </summary>
 35        /// <value>The identifier.</value>
 36        public string Id { get; set; }
 37
 38        /// <summary>
 39        /// Gets or sets the start index. Use for paging.
 40        /// </summary>
 41        /// <value>The start index.</value>
 42        public int? StartIndex { get; set; }
 43
 44        /// <summary>
 45        /// Gets or sets the maximum number of items to return.
 46        /// </summary>
 47        /// <value>The limit.</value>
 48        public int? Limit { get; set; }
 49
 50        /// <summary>
 51        /// Gets or sets the status.
 52        /// </summary>
 53        /// <value>The status.</value>
 54        public RecordingStatus? Status { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets a value indicating whether this instance is in progress.
 58        /// </summary>
 59        /// <value><c>null</c> if [is in progress] contains no value, <c>true</c> if [is in progress]; otherwise, <c>fal
 60        public bool? IsInProgress { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets the series timer identifier.
 64        /// </summary>
 65        /// <value>The series timer identifier.</value>
 66        public string SeriesTimerId { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the fields to return within the items, in addition to basic information.
 70        /// </summary>
 71        /// <value>The fields.</value>
 72        public ItemFields[] Fields { get; set; }
 73
 74        public bool? EnableImages { get; set; }
 75
 76        public bool? IsLibraryItem { get; set; }
 77
 78        public bool? IsNews { get; set; }
 79
 80        public bool? IsMovie { get; set; }
 81
 82        public bool? IsSeries { get; set; }
 83
 84        public bool? IsKids { get; set; }
 85
 86        public bool? IsSports { get; set; }
 87
 88        public int? ImageTypeLimit { get; set; }
 89
 90        public ImageType[] EnableImageTypes { get; set; }
 91
 92        public bool EnableTotalRecordCount { get; set; }
 93    }
 94}

Methods/Properties

.ctor()