mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
feat(wxapi): 随官方更新第三方平台小程序分阶段发布接口模型
This commit is contained in:
parent
7853dbc010
commit
cd755dec55
@ -1,4 +1,4 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /wxa/getgrayreleaseplan 接口的响应。</para>
|
||||
@ -29,6 +29,20 @@
|
||||
[Newtonsoft.Json.JsonProperty("create_timestamp")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("create_timestamp")]
|
||||
public long CreateTimestamp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否支持按项目成员灰度。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("support_debuger_first")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("support_debuger_first")]
|
||||
public bool? IsSupportDebuggerFirst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否支持按体验成员灰度。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("support_experiencer_first")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("support_experiencer_first")]
|
||||
public bool? IsSupportExperiencerFirst { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /wxa/grayrelease 接口的请求。</para>
|
||||
@ -11,5 +11,19 @@
|
||||
[Newtonsoft.Json.JsonProperty("gray_percentage")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("gray_percentage")]
|
||||
public int GrayPercentage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否支持按项目成员灰度。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("support_debuger_first")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("support_debuger_first")]
|
||||
public bool? IsSupportDebuggerFirst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否支持按体验成员灰度。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("support_experiencer_first")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("support_experiencer_first")]
|
||||
public bool? IsSupportExperiencerFirst { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,11 @@
|
||||
{
|
||||
{
|
||||
"errcode": 0,
|
||||
"errmsg": "ok",
|
||||
"gray_release_plan": {
|
||||
"status": 1,
|
||||
"create_timestamp": 1517553721,
|
||||
"gray_percentage": 8
|
||||
"gray_percentage": 8,
|
||||
"support_debuger_first": true,
|
||||
"support_experiencer_first": true
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,5 @@
|
||||
{
|
||||
"gray_percentage": 1
|
||||
{
|
||||
"gray_percentage": 1,
|
||||
"support_debuger_first": true,
|
||||
"support_experiencer_first": true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user