using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
///
/// 表示 [POST] /componenttcb/batchgetenvid 接口的响应。
///
public class ComponentTcbBatchGetEnvironmentIdResponse : WechatApiResponse
{
public static class Types
{
public class Relation
{
///
/// 获取或设置 AppId。
///
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AppId { get; set; } = default!;
///
/// 获取或设置环境 ID 列表。
///
[Newtonsoft.Json.JsonProperty("env_list")]
[System.Text.Json.Serialization.JsonPropertyName("env_list")]
public string[] EnvironmentIdList { get; set; } = default!;
}
public class Error : ComponentTcbBatchShareEnvironmentResponse.Types.Error
{
}
}
///
/// 获取或设置关系列表。
///
[Newtonsoft.Json.JsonProperty("relation_data")]
[System.Text.Json.Serialization.JsonPropertyName("relation_data")]
public Types.Relation[] RelationList { get; set; } = default!;
///
/// 获取或设置错误列表。
///
[Newtonsoft.Json.JsonProperty("err_list")]
[System.Text.Json.Serialization.JsonPropertyName("err_list")]
public Types.Error[]? ErrorList { get; set; }
}
}