//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. // // Changes to this file may cause incorrect behavior and will be lost when // the code is regenerated. // //------------------------------------------------------------------------------ #nullable enable namespace LukeHagar.PlexAPI.SDK.Models.Requests { using LukeHagar.PlexAPI.SDK.Models.Requests; using LukeHagar.PlexAPI.SDK.Utils; using System.Collections.Generic; public class User { /// /// User's unique ID. /// public long Id { get; set; } = default!; /// /// User's display name. /// public string Title { get; set; } = default!; /// /// User's username. /// public string Username { get; set; } = default!; /// /// User's email address. /// public string Email { get; set; } = default!; /// /// ID of the user's recommendation playlist. /// public string? RecommendationsPlaylistId { get; set; } = null; /// /// URL to the user's avatar image. /// public string Thumb { get; set; } = default!; public Protected? Protected { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.Protected.Disable; public Home? Home { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.Home.Disable; public AllowTuners? AllowTuners { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.AllowTuners.Disable; public AllowSync? AllowSync { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.AllowSync.Disable; public AllowCameraUpload? AllowCameraUpload { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.AllowCameraUpload.Disable; public AllowChannels? AllowChannels { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.AllowChannels.Disable; public AllowSubtitleAdmin? AllowSubtitleAdmin { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.AllowSubtitleAdmin.Disable; /// /// Filters applied for all content. /// public string? FilterAll { get; set; } = null; /// /// Filters applied for movies. /// public string? FilterMovies { get; set; } = null; /// /// Filters applied for music. /// public string? FilterMusic { get; set; } = null; /// /// Filters applied for photos. /// public string? FilterPhotos { get; set; } = null; /// /// Filters applied for television. /// public string? FilterTelevision { get; set; } public Restricted? Restricted { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.Restricted.Disable; /// /// List of servers owned by the user. /// public List Server { get; set; } = default!; } }