//------------------------------------------------------------------------------ // // 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.Utils; /// /// Use the specified chroma subsambling.
/// /// /// - 0: 411
/// - 1: 420
/// - 2: 422
/// - 3: 444
/// Defaults to 3 (444) ///
///
public enum ChromaSubsampling { Zero = 0, One = 1, Two = 2, Three = 3, } }