using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Model.Querying
{
    public class NextUpQuery
    {
        /// 
        /// Gets or sets the user id.
        /// 
        /// The user id.
        public Guid UserId { get; set; }
        /// 
        /// Gets or sets the parent identifier.
        /// 
        /// The parent identifier.
        public string ParentId { get; set; }
        
        /// 
        /// Gets or sets the series id.
        /// 
        /// The series id.
        public string SeriesId { get; set; }
        
        /// 
        /// Skips over a given number of items within the results. Use for paging.
        /// 
        /// The start index.
        public int? StartIndex { get; set; }
        /// 
        /// The maximum number of items to return
        /// 
        /// The limit.
        public int? Limit { get; set; }
        /// 
        /// Fields to return within the items, in addition to basic information
        /// 
        /// The fields.
        public ItemFields[] Fields { get; set; }
        /// 
        /// Gets or sets a value indicating whether [enable images].
        /// 
        /// null if [enable images] contains no value, true if [enable images]; otherwise, false.
        public bool? EnableImages { get; set; }
        /// 
        /// Gets or sets the image type limit.
        /// 
        /// The image type limit.
        public int? ImageTypeLimit { get; set; }
        /// 
        /// Gets or sets the enable image types.
        /// 
        /// The enable image types.
        public ImageType[] EnableImageTypes { get; set; }
        public bool EnableTotalRecordCount { get; set; }
        public NextUpQuery()
        {
            EnableImageTypes = new ImageType[] {};
            EnableTotalRecordCount = true;
        }
    }
}