ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.147.0

This commit is contained in:
speakeasybot
2024-01-18 23:37:25 +00:00
parent 68456f1a6a
commit a2574b38a7
31 changed files with 315 additions and 65 deletions

View File

@@ -11,15 +11,14 @@
namespace PlexAPI.Models.Requests
{
using Newtonsoft.Json;
using System.Collections.Generic;
/// <summary>
/// Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
/// The libraries available on the Server
/// </summary>
public class GetLibrariesResponseBody
{
[JsonProperty("errors")]
public List<GetLibrariesErrors>? Errors { get; set; }
[JsonProperty("MediaContainer")]
public GetLibrariesMediaContainer? MediaContainer { get; set; }
}
}