//------------------------------------------------------------------------------ // // 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 PlexAPI.Models.Requests { using Newtonsoft.Json; using PlexAPI.Utils; public class GetSessionsStream { [JsonProperty("albumGain")] public string? AlbumGain { get; set; } [JsonProperty("albumPeak")] public string? AlbumPeak { get; set; } [JsonProperty("albumRange")] public string? AlbumRange { get; set; } [JsonProperty("audioChannelLayout")] public string? AudioChannelLayout { get; set; } [JsonProperty("bitDepth")] public int? BitDepth { get; set; } [JsonProperty("bitrate")] public int? Bitrate { get; set; } [JsonProperty("channels")] public int? Channels { get; set; } [JsonProperty("codec")] public string? Codec { get; set; } [JsonProperty("displayTitle")] public string? DisplayTitle { get; set; } [JsonProperty("extendedDisplayTitle")] public string? ExtendedDisplayTitle { get; set; } [JsonProperty("gain")] public string? Gain { get; set; } [JsonProperty("id")] public string? Id { get; set; } [JsonProperty("index")] public int? Index { get; set; } [JsonProperty("loudness")] public string? Loudness { get; set; } [JsonProperty("lra")] public string? Lra { get; set; } [JsonProperty("peak")] public string? Peak { get; set; } [JsonProperty("samplingRate")] public int? SamplingRate { get; set; } [JsonProperty("selected")] public bool? Selected { get; set; } [JsonProperty("streamType")] public int? StreamType { get; set; } [JsonProperty("location")] public string? Location { get; set; } } }