//------------------------------------------------------------------------------
//
// 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 Directory
{
///
/// The filter string to view metadata wit this tag
///
[JsonProperty("filter")]
public string? Filter { get; set; }
[JsonProperty("id")]
public long? Id { get; set; }
///
/// The name of the tag
///
[JsonProperty("tag")]
public string? Tag { get; set; }
///
/// The key of this tag. This is a universal key across all PMS instances and plex.tv services
///
[JsonProperty("tagKey")]
public string? TagKey { get; set; }
///
/// The type of the tag
///
[JsonProperty("tagType")]
public long? TagType { get; set; }
///
/// The URL to a thumbnail for this tag
///
[JsonProperty("thumb")]
public string? Thumb { get; set; }
}
}