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