ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.656.1

This commit is contained in:
speakeasybot
2025-11-13 00:26:46 +00:00
parent c695dbace1
commit 70dbffa1d4
47 changed files with 125 additions and 115 deletions

View File

@@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <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.Components
{
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
public class LibrarySectionsDirectory
{
[JsonProperty("count")]
public long? Count { get; set; }
/// <summary>
/// The key where this directory is found
/// </summary>
[JsonProperty("key")]
public string? Key { get; set; }
[JsonProperty("title")]
public string? Title { get; set; }
}
}