From cc9864be328f090975818eebacc40ffcfb9d215a Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Sat, 5 Jun 2021 21:36:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(tenpayv3):=20=E9=9A=8F=E5=AE=98=E6=96=B9?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=9C=8D=E5=8A=A1=E5=95=86=E7=BB=93=E7=AE=97?= =?UTF-8?q?=E8=B4=A6=E6=88=B7=E6=8E=A5=E5=8F=A3=E7=9B=B8=E5=85=B3=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Settlement/GetApplyForSubMerchantSettlementResponse.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.cs index 9a6ffbcd..e220241a 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.cs @@ -56,5 +56,12 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models [Newtonsoft.Json.JsonProperty("verify_result")] [System.Text.Json.Serialization.JsonPropertyName("verify_result")] public string VerifyResult { get; set; } = default!; + + /// + /// 获取或设置汇款验证失败原因。 + /// + [Newtonsoft.Json.JsonProperty("verify_fail_reason")] + [System.Text.Json.Serialization.JsonPropertyName("verify_fail_reason")] + public string? VerifyFailReason { get; set; } } }