//------------------------------------------------------------------------------ // // 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; /// /// Container holding user and server details. /// public class GetUsersMediaContainer { /// /// The friendly name of the Plex instance. /// public string FriendlyName { get; set; } = default!; public string Identifier { get; set; } = default!; /// /// Unique Machine identifier of the Plex server. /// public string MachineIdentifier { get; set; } = default!; /// /// Total number of users. /// public long TotalSize { get; set; } = default!; /// /// Number of users in the current response. /// public long Size { get; set; } = default!; /// /// List of users with access to the Plex server. /// public List User { get; set; } = default!; } }