mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /componenttcb/batchdeletefile 接口的响应。</para>
|
|
/// </summary>
|
|
public class ComponentTcbBatchDeleteFileResponse : WechatApiResponse
|
|
{
|
|
public static class Types
|
|
{
|
|
public class File
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置文件 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("fileid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("fileid")]
|
|
public string FileId { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置错误码。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("status")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
|
public int ErrorCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置错误描述。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("errmsg")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("errmsg")]
|
|
public string? ErrorMessage { get; set; }
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取或设置文件列表。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("delete_list")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("delete_list")]
|
|
public Types.File[] FileList { get; set; } = default!;
|
|
}
|
|
}
|