//------------------------------------------------------------------------------ // // 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 MediaSettings { [JsonProperty("advancedSubtitles")] public Models.Requests.AdvancedSubtitles? AdvancedSubtitles { get; set; } [JsonProperty("audioBoost")] public long? AudioBoost { get; set; } [JsonProperty("audioChannelCount")] public long? AudioChannelCount { get; set; } [JsonProperty("autoAdjustQuality")] public bool? AutoAdjustQuality { get; set; } [JsonProperty("autoAdjustSubtitle")] public bool? AutoAdjustSubtitle { get; set; } [JsonProperty("directPlay")] public bool? DirectPlay { get; set; } [JsonProperty("directStream")] public bool? DirectStream { get; set; } [JsonProperty("directStreamAudio")] public bool? DirectStreamAudio { get; set; } [JsonProperty("disableResolutionRotation")] public bool? DisableResolutionRotation { get; set; } [JsonProperty("maxVideoBitrate")] public long? MaxVideoBitrate { get; set; } [JsonProperty("musicBitrate")] public long? MusicBitrate { get; set; } [JsonProperty("peakBitrate")] public long? PeakBitrate { get; set; } [JsonProperty("photoQuality")] public long? PhotoQuality { get; set; } [JsonProperty("photoResolution")] public string? PhotoResolution { get; set; } [JsonProperty("secondsPerSegment")] public long? SecondsPerSegment { get; set; } [JsonProperty("subtitles")] public GetPlaylistGeneratorSubtitles? Subtitles { get; set; } [JsonProperty("subtitleSize")] public long? SubtitleSize { get; set; } [JsonProperty("videoBitrate")] public long? VideoBitrate { get; set; } [JsonProperty("videoQuality")] public long? VideoQuality { get; set; } [JsonProperty("videoResolution")] public string? VideoResolution { get; set; } } }