mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-11 10:16:20 +08:00
26 lines
824 B
C#
26 lines
824 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /tcb/modifyenv 接口的请求。</para>
|
|
/// </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;
|
|
}
|
|
}
|