mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
23 lines
800 B
C#
23 lines
800 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/chatdata/set_log_level 接口的请求。</para>
|
|
/// </summary>
|
|
public class CgibinChatDataSetLogLevelRequest : WechatWorkRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置应用关联的程序 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("program_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("program_id")]
|
|
public string ProgramId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置日志级别。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("log_level")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("log_level")]
|
|
public int LogLevel { get; set; }
|
|
}
|
|
}
|