//------------------------------------------------------------------------------ // // 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 PlayQueueGenerator { [JsonProperty("changedAt")] public long? ChangedAt { get; set; } [JsonProperty("createdAt")] public long? CreatedAt { get; set; } [JsonProperty("id")] public long? Id { get; set; } [JsonProperty("playlistID")] public long? PlaylistID { get; set; } /// /// The type of playlist generator.
/// /// ///
/// - -1: A smart playlist generator
/// - 42: A optimized version generator
/// ///
///
[JsonProperty("type")] public GetPlaylistGeneratorsType? Type { get; set; } [JsonProperty("updatedAt")] public long? UpdatedAt { get; set; } /// /// The URI indicating the search for this generator /// [JsonProperty("uri")] public string? Uri { get; set; } } }