2021-08-05 21:37:57 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2021-08-06 00:29:03 +08:00
|
|
|
|
/// <para>表示 [POST] /tcb/modifyenv 接口的请求。</para>
|
2021-08-05 21:37:57 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ComponentTcbModifyEnvironmentRequest : WechatApiRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取或设置第三方平台 AccessToken。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
|
public string ComponentAccessToken { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取或设置环境 ID。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("env")]
|
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("env")]
|
|
|
|
|
|
public string EnvironmentId { get; set; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|