//------------------------------------------------------------------------------ // // 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.Components { using LukeHagar.PlexAPI.SDK.Models.Components; using LukeHagar.PlexAPI.SDK.Utils; using Newtonsoft.Json; /// /// Images such as movie posters and background artwork are represented by Image elements.
/// /// /// /// ///
public class Image { /// /// Describes both the purpose and intended presentation of the image. /// [JsonProperty("type")] public ImageType? Type { get; set; } /// /// Title to use for accessibility. /// [JsonProperty("alt")] public string? Alt { get; set; } /// /// The relative path or absolute url for the image. /// [JsonProperty("url")] public string? Url { get; set; } } }