mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 20:47:49 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.484.1
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
#nullable enable
|
||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||
{
|
||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||
using LukeHagar.PlexAPI.SDK.Utils;
|
||||
using System.Collections.Generic;
|
||||
|
||||
/// <summary>
|
||||
/// Container holding user and server details.
|
||||
/// </summary>
|
||||
public class GetUsersMediaContainer
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// The friendly name of the Plex instance.
|
||||
/// </summary>
|
||||
public string FriendlyName { get; set; } = default!;
|
||||
|
||||
public string Identifier { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Unique Machine identifier of the Plex server.
|
||||
/// </summary>
|
||||
public string MachineIdentifier { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Total number of users.
|
||||
/// </summary>
|
||||
public long TotalSize { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Number of users in the current response.
|
||||
/// </summary>
|
||||
public long Size { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// List of users with access to the Plex server.
|
||||
/// </summary>
|
||||
public List<User> User { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user