ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.541.2

This commit is contained in:
speakeasybot
2025-05-01 00:28:06 +00:00
parent 9ccab7b22d
commit 67a53e72d5
71 changed files with 1229 additions and 614 deletions

View File

@@ -12,25 +12,22 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
/// <summary>
/// The filter query string for country media items.
/// </summary>
public class GetMediaMetaDataCountry
{
/// <summary>
/// The unique country identifier.
/// </summary>
[JsonProperty("id")]
public int Id { get; set; } = default!;
/// <summary>
/// The filter string for the country.
/// </summary>
[JsonProperty("filter")]
public string Filter { get; set; } = default!;
/// <summary>
/// The country name.
/// The country of origin of this media item
/// </summary>
[JsonProperty("tag")]
public string Tag { get; set; } = default!;
[JsonProperty("filter")]
public string? Filter { get; set; }
}
}