//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasyapi.dev). 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 PlexAPI.Utils; public class LogLineRequest { /// /// An integer log level to write to the PMS log with.
/// /// /// 0: Error
/// 1: Warning
/// 2: Info
/// 3: Debug
/// 4: Verbose
/// ///
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=level")] public Level Level { get; set; } = default!; /// /// The text of the message to write to the log. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=message")] public string Message { get; set; } = default!; /// /// a string indicating the source of the message. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=source")] public string Source { get; set; } = default!; } }