using System; using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /componenttcb/batchdeletefile 接口的响应。 /// public class ComponentTcbBatchDeleteFileResponse : WechatApiResponse { public static class Types { public class File { /// /// 获取或设置文件 ID。 /// [Newtonsoft.Json.JsonProperty("fileid")] [System.Text.Json.Serialization.JsonPropertyName("fileid")] public string FileId { get; set; } = default!; /// /// 获取或设置错误码。 /// [Newtonsoft.Json.JsonProperty("status")] [System.Text.Json.Serialization.JsonPropertyName("status")] public int ErrorCode { get; set; } /// /// 获取或设置错误描述。 /// [Newtonsoft.Json.JsonProperty("errmsg")] [System.Text.Json.Serialization.JsonPropertyName("errmsg")] public string? ErrorMessage { get; set; } } } /// /// 获取或设置文件列表。 /// [Newtonsoft.Json.JsonProperty("delete_list")] [System.Text.Json.Serialization.JsonPropertyName("delete_list")] public Types.File[] FileList { get; set; } = default!; } }