//------------------------------------------------------------------------------
//
// 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 Newtonsoft.Json;
using System.Collections.Generic;
///
/// Container holding user and server details.
///
public class GetUsersMediaContainer
{
///
/// The friendly name of the Plex instance.
///
[JsonProperty("friendlyName")]
public string FriendlyName { get; set; } = default!;
[JsonProperty("identifier")]
public string Identifier { get; set; } = default!;
///
/// Unique Machine identifier of the Plex server.
///
[JsonProperty("machineIdentifier")]
public string MachineIdentifier { get; set; } = default!;
///
/// Total number of users.
///
[JsonProperty("totalSize")]
public long TotalSize { get; set; } = default!;
///
/// Number of users in the current response.
///
[JsonProperty("size")]
public long Size { get; set; } = default!;
///
/// List of users with access to the Plex server.
///
[JsonProperty("User")]
public List User { get; set; } = default!;
}
}