mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 04:53:46 +08:00
feat(wxapi): 新增小程序短剧播放器推荐位控制接口
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /wxadrama/setplayerdramarecmdswitch 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class WxaDramaSetPlayerDramaRecommendSwitchRequest : WechatApiRequest, IInferable<WxaDramaSetPlayerDramaRecommendSwitchRequest, WxaDramaSetPlayerDramaRecommendSwitchResponse>
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置推荐位类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("entry_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("entry_type")]
|
||||
public int EntryType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否打开。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("switch_status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("switch_status")]
|
||||
public bool IsOpen { get; set; }
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /wxadrama/setplayerdramarecmdswitch 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class WxaDramaSetPlayerDramaRecommendSwitchResponse : WechatApiResponse
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user