mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-17 05:48:09 +08:00
feat(work): 新增自建应用迁移成代开发自建应用接口
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/agent/migrate_to_customized_app 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class CgibinAgentMigrateToCustomizedAppRequest : WechatWorkRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置代开发应用模版接口调用凭证。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("suite_access_token")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("suite_access_token")]
|
||||
public string SuiteAccessToken { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/agent/migrate_to_customized_app 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CgibinAgentMigrateToCustomizedAppResponse : WechatWorkResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user