//------------------------------------------------------------------------------ // // 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; using System.Collections.Generic; public class MediaContainerWithDeviceDevice { [JsonProperty("ChannelMapping")] public List? ChannelMapping { get; set; } [JsonProperty("key")] public string? Key { get; set; } [JsonProperty("lastSeenAt")] public long? LastSeenAt { get; set; } [JsonProperty("make")] public string? Make { get; set; } [JsonProperty("model")] public string? Model { get; set; } [JsonProperty("modelNumber")] public string? ModelNumber { get; set; } [JsonProperty("protocol")] public string? Protocol { get; set; } [JsonProperty("sources")] public string? Sources { get; set; } [JsonProperty("state")] public string? State { get; set; } [JsonProperty("status")] public string? Status { get; set; } [JsonProperty("tuners")] public string? Tuners { get; set; } [JsonProperty("uri")] public string? Uri { get; set; } [JsonProperty("uuid")] public string? Uuid { get; set; } } }