//------------------------------------------------------------------------------
//
// 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 Role
{
///
/// The ID of the tag or actor.
///
[JsonProperty("id")]
public long? Id { get; set; }
///
/// The filter used to find the actor or tag.
///
[JsonProperty("filter")]
public string? Filter { get; set; }
///
/// The thumbnail of the actor
///
[JsonProperty("thumb")]
public string? Thumb { get; set; }
///
/// The name of the tag or actor.
///
[JsonProperty("tag")]
public string? Tag { get; set; }
///
/// Unique identifier for the tag.
///
[JsonProperty("tagKey")]
public string? TagKey { get; set; }
///
/// The role of the actor or tag in the media.
///
[JsonProperty("role")]
public string? RoleValue { get; set; }
}
}