mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
25 lines
739 B
C#
25 lines
739 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /v1/bot/import 接口的响应。</para>
|
|
/// </summary>
|
|
public class BotImportResponse : WechatOpenAIResponse<BotImportResponse.Types.Data>
|
|
{
|
|
public static class Types
|
|
{
|
|
public class Data
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置异步任务 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("task_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("task_id")]
|
|
public string TaskId { get; set; } = default!;
|
|
}
|
|
}
|
|
}
|
|
}
|