mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-16 05:16:21 +08:00
26 lines
833 B
C#
26 lines
833 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// <para>表示 [POST] /componenttcb/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;
|
|||
|
|
}
|
|||
|
|
}
|