//------------------------------------------------------------------------------
//
// 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.Utils;
using Newtonsoft.Json;
public class GetIdentityMediaContainer
{
///
/// Indicates whether this server has been claimed by a user
///
[JsonProperty("claimed")]
public bool? Claimed { get; set; }
///
/// A unique identifier of the computer
///
[JsonProperty("machineIdentifier")]
public string? MachineIdentifier { get; set; }
[JsonProperty("size")]
public long? Size { get; set; }
///
/// The full version string of the PMS
///
[JsonProperty("version")]
public string? Version { get; set; }
}
}