2022-01-14 14:37:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-05-28 19:23:28 +08:00
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /tcb/describeextensionuploadinfo 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-11-04 10:40:13 +08:00
|
|
|
|
public class TCBDescribeExtensionUploadInfoRequest : WechatApiRequest, IInferable<TCBDescribeExtensionUploadInfoRequest, TCBDescribeExtensionUploadInfoResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
public static class Types
|
|
|
|
|
{
|
|
|
|
|
public class Data
|
|
|
|
|
{
|
|
|
|
|
public static class Types
|
|
|
|
|
{
|
|
|
|
|
public class ExtensionFile
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置文件类型。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("FileType")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("FileType")]
|
|
|
|
|
public string FileType { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置文件名。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("FileName")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("FileName")]
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置待上传的文件列表。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("ExtensionFiles")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("ExtensionFiles")]
|
|
|
|
|
public IList<Types.ExtensionFile> ExtensionFileList { get; set; } = new List<Types.ExtensionFile>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置上传数据。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("PostData")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("PostData")]
|
|
|
|
|
public Types.Data Data { get; set; } = new Types.Data();
|
|
|
|
|
}
|
|
|
|
|
}
|