ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.557.0

This commit is contained in:
speakeasybot
2025-06-09 00:28:07 +00:00
parent bc02ecef34
commit 4197184f92
192 changed files with 3360 additions and 2768 deletions

View File

@@ -16,10 +16,16 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
public class SearchResult
{
/// <summary>
/// The score of the search result, typically a float value between 0 and 1.
/// </summary>
[JsonProperty("score")]
public float Score { get; set; } = default!;
[JsonProperty("Directory")]
public GetSearchAllLibrariesDirectory? Directory { get; set; }
[JsonProperty("Metadata")]
public GetSearchAllLibrariesMetadata Metadata { get; set; } = default!;
public GetSearchAllLibrariesMetadata? Metadata { get; set; }
}
}