Files
plexcsharp/LukeHagar/PlexAPI/SDK/Models/Requests/GetMediaArtsMetadata.cs

48 lines
1.4 KiB
C#

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