feat(work): 随官方更新客户群管理相关接口模型

This commit is contained in:
Fu Diwei
2023-12-02 13:45:51 +08:00
parent f70f2f0432
commit f524eba7d2
4 changed files with 27 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.Events namespace SKIT.FlurlHttpClient.Wechat.Work.Events
{ {
/// <summary> /// <summary>
/// <para>表示 EVENT.change_external_chat 或 INFO.change_external_chat 事件的数据。</para> /// <para>表示 EVENT.change_external_chat 或 INFO.change_external_chat 事件的数据。</para>
@@ -54,5 +54,17 @@
/// </summary> /// </summary>
[System.Xml.Serialization.XmlElement("MemChangeCnt", IsNullable = true)] [System.Xml.Serialization.XmlElement("MemChangeCnt", IsNullable = true)]
public int? MemberChangedCount { get; set; } public int? MemberChangedCount { get; set; }
/// <summary>
/// 获取或设置变更前的群成员版本号。
/// </summary>
[System.Xml.Serialization.XmlElement("LastMemVer", IsNullable = true)]
public string? LastMemberVersion { get; set; }
/// <summary>
/// 获取或设置变更后的群成员版本号。
/// </summary>
[System.Xml.Serialization.XmlElement("CurMemVer", IsNullable = true)]
public string? CurrentMemberVersion { get; set; }
} }
} }

View File

@@ -500,6 +500,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work
/// <summary> /// <summary>
/// <para>异步调用 [POST] /cgi-bin/externalcontact/customer_acquisition/list_link 接口。</para> /// <para>异步调用 [POST] /cgi-bin/externalcontact/customer_acquisition/list_link 接口。</para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/97297 </para> /// <para>REF: https://developer.work.weixin.qq.com/document/path/97297 </para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/99484 </para>
/// </summary> /// </summary>
/// <param name="client"></param> /// <param name="client"></param>
/// <param name="request"></param> /// <param name="request"></param>
@@ -520,6 +521,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work
/// <summary> /// <summary>
/// <para>异步调用 [POST] /cgi-bin/externalcontact/customer_acquisition/get 接口。</para> /// <para>异步调用 [POST] /cgi-bin/externalcontact/customer_acquisition/get 接口。</para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/97297 </para> /// <para>REF: https://developer.work.weixin.qq.com/document/path/97297 </para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/99484 </para>
/// </summary> /// </summary>
/// <param name="client"></param> /// <param name="client"></param>
/// <param name="request"></param> /// <param name="request"></param>
@@ -640,6 +642,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work
/// <summary> /// <summary>
/// <para>异步调用 [GET] /cgi-bin/externalcontact/customer_acquisition/statistic 接口。</para> /// <para>异步调用 [GET] /cgi-bin/externalcontact/customer_acquisition/statistic 接口。</para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/97375 </para> /// <para>REF: https://developer.work.weixin.qq.com/document/path/97375 </para>
/// <para>REF: https://developer.work.weixin.qq.com/document/path/99483 </para>
/// </summary> /// </summary>
/// <param name="client"></param> /// <param name="client"></param>
/// <param name="request"></param> /// <param name="request"></param>

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.Models namespace SKIT.FlurlHttpClient.Wechat.Work.Models
{ {
/// <summary> /// <summary>
/// <para>表示 [POST] /cgi-bin/externalcontact/groupchat/get 接口的响应。</para> /// <para>表示 [POST] /cgi-bin/externalcontact/groupchat/get 接口的响应。</para>
@@ -149,6 +149,13 @@
[Newtonsoft.Json.JsonProperty("create_time")] [Newtonsoft.Json.JsonProperty("create_time")]
[System.Text.Json.Serialization.JsonPropertyName("create_time")] [System.Text.Json.Serialization.JsonPropertyName("create_time")]
public long CreateTimestamp { get; set; } public long CreateTimestamp { get; set; }
/// <summary>
/// 获取或设置当前群成员版本号。
/// </summary>
[Newtonsoft.Json.JsonProperty("member_version")]
[System.Text.Json.Serialization.JsonPropertyName("member_version")]
public string MemberVersion { get; set; } = default!;
} }
} }

View File

@@ -1,4 +1,4 @@
{ {
"errcode": 0, "errcode": 0,
"errmsg": "ok", "errmsg": "ok",
"group_chat": { "group_chat": {
@@ -37,6 +37,7 @@
{ {
"userid": "pony" "userid": "pony"
} }
] ],
"member_version": "71217227bbd112ecfe3a49c482195cb4"
} }
} }