mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
87 lines
2.8 KiB
C#
87 lines
2.8 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 GetSearchAllLibrariesDirectory
|
|
{
|
|
|
|
/// <summary>
|
|
/// The unique identifier path for the search result item.
|
|
/// </summary>
|
|
[JsonProperty("key")]
|
|
public string Key { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The identifier for the library section.
|
|
/// </summary>
|
|
[JsonProperty("librarySectionID")]
|
|
public long LibrarySectionID { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The key corresponding to the library section.
|
|
/// </summary>
|
|
[JsonProperty("librarySectionKey")]
|
|
public string LibrarySectionKey { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The title of the library section.
|
|
/// </summary>
|
|
[JsonProperty("librarySectionTitle")]
|
|
public string LibrarySectionTitle { get; set; } = default!;
|
|
|
|
[JsonProperty("librarySectionType")]
|
|
public long LibrarySectionType { get; } = 1;
|
|
|
|
/// <summary>
|
|
/// The type of the directory.
|
|
/// </summary>
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; } = default!;
|
|
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The filter string used to query this specific item in the library.
|
|
/// </summary>
|
|
[JsonProperty("filter")]
|
|
public string? Filter { get; set; }
|
|
|
|
[JsonProperty("tag")]
|
|
public string Tag { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The type of tag associated with this search result (e.g., Director, Actor).
|
|
/// </summary>
|
|
[JsonProperty("tagType")]
|
|
public long TagType { get; } = 4;
|
|
|
|
/// <summary>
|
|
/// The unique identifier for the tag associated with this search result.
|
|
/// </summary>
|
|
[JsonProperty("tagKey")]
|
|
public string? TagKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// The URL to the thumbnail image associated with this search result.
|
|
/// </summary>
|
|
[JsonProperty("thumb")]
|
|
public string? Thumb { get; set; }
|
|
|
|
/// <summary>
|
|
/// The number of items associated with this search result.
|
|
/// </summary>
|
|
[JsonProperty("count")]
|
|
public long? Count { get; set; }
|
|
}
|
|
} |