mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 04:20:46 +00:00
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <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.Utils;
|
|
using Newtonsoft.Json;
|
|
|
|
public class GetMediaMetaDataRole
|
|
{
|
|
|
|
/// <summary>
|
|
/// The unique role identifier.
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The filter string for the role.
|
|
/// </summary>
|
|
[JsonProperty("filter")]
|
|
public string Filter { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The actor's name.
|
|
/// </summary>
|
|
[JsonProperty("tag")]
|
|
public string Tag { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// A key associated with the actor tag.
|
|
/// </summary>
|
|
[JsonProperty("tagKey")]
|
|
public string TagKey { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The character name or role.
|
|
/// </summary>
|
|
[JsonProperty("role")]
|
|
public string? Role { get; set; }
|
|
|
|
/// <summary>
|
|
/// URL for the role thumbnail image.
|
|
/// </summary>
|
|
[JsonProperty("thumb")]
|
|
public string? Thumb { get; set; }
|
|
}
|
|
} |