2022-01-14 14:37:52 +08:00
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
2021-10-21 20:55:47 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /cgi-bin/draft/switch 接口的响应。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CgibinDraftSwitchResponse : WechatApiResponse
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置是否开启草稿箱功能。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("is_open")]
|
|
|
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.NumericalBooleanConverter))]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("is_open")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.NumericalBooleanConverter))]
|
|
|
|
|
public bool IsOpen { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|