//------------------------------------------------------------------------------ // // 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.Models.Requests; using LukeHagar.PlexAPI.SDK.Utils; using Newtonsoft.Json; public class Item { /// /// The composite thumbnail image path /// [JsonProperty("composite")] public string? Composite { get; set; } [JsonProperty("Device")] public GetPlaylistGeneratorDevice? Device { get; set; } [JsonProperty("id")] public long? Id { get; set; } [JsonProperty("Location")] public GetPlaylistGeneratorLocation? Location { get; set; } [JsonProperty("MediaSettings")] public MediaSettings? MediaSettings { get; set; } [JsonProperty("Policy")] public Policy? Policy { get; set; } [JsonProperty("Status")] public GetPlaylistGeneratorStatus? Status { get; set; } [JsonProperty("target")] public string? Target { get; set; } /// /// The tag of this generator's settings /// [JsonProperty("targetTagID")] public long? TargetTagID { get; set; } [JsonProperty("title")] public string? Title { get; set; } /// /// The type of this generator /// [JsonProperty("type")] public GetPlaylistGeneratorType? Type { get; set; } } }