mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-18 04:33:16 +08:00
feat(wxapi): 随官方更新交易保障获取交易保障标状态接口模型
This commit is contained in:
parent
3a6acb08cc
commit
d05fc8437c
@ -11,5 +11,19 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|||||||
[Newtonsoft.Json.JsonProperty("isActived")]
|
[Newtonsoft.Json.JsonProperty("isActived")]
|
||||||
[System.Text.Json.Serialization.JsonPropertyName("isActived")]
|
[System.Text.Json.Serialization.JsonPropertyName("isActived")]
|
||||||
public bool IsActived { get; set; }
|
public bool IsActived { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取或设置保障标状态相关信息。
|
||||||
|
/// </summary>
|
||||||
|
[Newtonsoft.Json.JsonProperty("msg")]
|
||||||
|
[System.Text.Json.Serialization.JsonPropertyName("msg")]
|
||||||
|
public string? Message { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取或设置未能开通保障标的原因列表。
|
||||||
|
/// </summary>
|
||||||
|
[Newtonsoft.Json.JsonProperty("reasons")]
|
||||||
|
[System.Text.Json.Serialization.JsonPropertyName("reasons")]
|
||||||
|
public string[]? ReasonList { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
"errcode": 0,
|
"errcode": 0,
|
||||||
"isActived": true
|
"isActived": false,
|
||||||
|
"msg": "暂未达标「交易健康标准」,已达标「交易风险评级」,可通过缴纳保证金开通",
|
||||||
|
"reasons": [ "经营时长小于3年", "保证金余额不足" ]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user