2022-01-14 14:37:52 +08:00
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
2021-06-11 17:20:36 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /cgi-bin/account/componentrebindadmin 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class CgibinAccountComponentRebindAdminRequest : WechatApiRequest, IInferable<CgibinAccountComponentRebindAdminRequest, CgibinAccountComponentRebindAdminResponse>
|
2021-06-11 17:20:36 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置换绑管理员任务序列号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("taskid")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("taskid")]
|
|
|
|
|
public string TaskId { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|