mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-18 22:26:20 +08:00
feat(work): 新增获取接口大批量调用凭据
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/corp/apply_mass_call_ticket 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class CgibinCorpApplyMassCallTicketRequest : WechatWorkRequest
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/corp/apply_mass_call_ticket 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CgibinCorpApplyMassCallTicketResponse : WechatWorkResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置大批量调用凭据。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("mass_call_ticket")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("mass_call_ticket")]
|
||||
public string MassCallTicket { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user