#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Querying
{
    public class MovieRecommendationQuery
    {
        /// 
        /// Gets or sets the user identifier.
        /// 
        /// The user identifier.
        public string UserId { get; set; }
        /// 
        /// Gets or sets the parent identifier.
        /// 
        /// The parent identifier.
        public string ParentId { get; set; }
        /// 
        /// Gets or sets the item limit.
        /// 
        /// The item limit.
        public int ItemLimit { get; set; }
        /// 
        /// Gets or sets the category limit.
        /// 
        /// The category limit.
        public int CategoryLimit { get; set; }
        /// 
        /// Gets or sets the fields.
        /// 
        /// The fields.
        public ItemFields[] Fields { get; set; }
        public MovieRecommendationQuery()
        {
            ItemLimit = 10;
            CategoryLimit = 6;
            Fields = Array.Empty();
        }
    }
}