//------------------------------------------------------------------------------ // // 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 GetSearchAllLibrariesDirectory { /// /// The unique identifier path for the search result item. /// [JsonProperty("key")] public string Key { get; set; } = default!; /// /// The identifier for the library section. /// [JsonProperty("librarySectionID")] public long LibrarySectionID { get; set; } = default!; /// /// The key corresponding to the library section. /// [JsonProperty("librarySectionKey")] public string LibrarySectionKey { get; set; } = default!; /// /// The title of the library section. /// [JsonProperty("librarySectionTitle")] public string LibrarySectionTitle { get; set; } = default!; [JsonProperty("librarySectionType")] public long LibrarySectionType { get; } = 1; /// /// The type of the directory. /// [JsonProperty("type")] public string Type { get; set; } = default!; [JsonProperty("id")] public long Id { get; set; } = default!; /// /// The filter string used to query this specific item in the library. /// [JsonProperty("filter")] public string? Filter { get; set; } [JsonProperty("tag")] public string Tag { get; set; } = default!; /// /// The type of tag associated with this search result (e.g., Director, Actor). /// [JsonProperty("tagType")] public long TagType { get; } = 4; /// /// The unique identifier for the tag associated with this search result. /// [JsonProperty("tagKey")] public string? TagKey { get; set; } /// /// The URL to the thumbnail image associated with this search result. /// [JsonProperty("thumb")] public string? Thumb { get; set; } /// /// The number of items associated with this search result. /// [JsonProperty("count")] public long? Count { get; set; } } }