From bb68fa35d4d49f9dd77189963254fab4a125d8bd Mon Sep 17 00:00:00 2001 From: zuoxiang Date: Mon, 17 Jan 2022 14:43:44 +0800 Subject: [PATCH] =?UTF-8?q?feat(wxapi):=20=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E7=A0=81=E7=94=9F=E6=88=90=E5=8F=82=E6=95=B0=E8=A1=A5=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.cs index 8765fe74..190e1281 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.cs @@ -53,5 +53,19 @@ [Newtonsoft.Json.JsonProperty("is_hyaline")] [System.Text.Json.Serialization.JsonPropertyName("is_hyaline")] public bool? IsHyaline { get; set; } + + /// + /// 检查page 是否存在,为 true 时 page 必须是已经发布的小程序存在的页面(否则报错);为 false 时允许小程序未发布或者 page 不存在, 但page 有数量上限(60000个)请勿滥用 + /// + [Newtonsoft.Json.JsonProperty("check_path")] + [System.Text.Json.Serialization.JsonPropertyName("check_path")] + public bool? IsCheckPath { get; set; } + + /// + /// 要打开的小程序版本。正式版为 "release",体验版为 "trial",开发版为 "develop" + /// + [Newtonsoft.Json.JsonProperty("env_version")] + [System.Text.Json.Serialization.JsonPropertyName("env_version")] + public string? EnvVersion { get; set; } } }