//------------------------------------------------------------------------------ // // 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 GetMediaArtsMetadata { /// /// The URL of the artwork. /// [JsonProperty("key")] public string Key { get; set; } = default!; /// /// The provider of the artwork. /// [JsonProperty("provider")] public string? Provider { get; set; } /// /// The URL of the artwork. /// [JsonProperty("ratingKey")] public string RatingKey { get; set; } = default!; /// /// Whether this is the selected artwork. /// [JsonProperty("selected")] public bool Selected { get; set; } = default!; /// /// The URL of the artwork thumbnail. /// [JsonProperty("thumb")] public string Thumb { get; set; } = default!; } }