//------------------------------------------------------------------------------ // // 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; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; 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!; } }