feat(tenpayv3): 随官方更新消费者投诉相关接口模型

This commit is contained in:
Fu Diwei 2021-11-16 20:20:17 +08:00
parent d3db43f38a
commit d49c3b13ad
2 changed files with 16 additions and 0 deletions

View File

@ -35,5 +35,19 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
[Newtonsoft.Json.JsonProperty("response_images")]
[System.Text.Json.Serialization.JsonPropertyName("response_images")]
public IList<string>? ResponseMediaIdList { get; set; }
/// <summary>
/// 获取或设置跳转链接。
/// </summary>
[Newtonsoft.Json.JsonProperty("jump_url")]
[System.Text.Json.Serialization.JsonPropertyName("jump_url")]
public string? JumpUrl { get; set; }
/// <summary>
/// 获取或设置跳转链接文案。
/// </summary>
[Newtonsoft.Json.JsonProperty("jump_url_text")]
[System.Text.Json.Serialization.JsonPropertyName("jump_url_text")]
public string? JumpUrlText { get; set; }
}
}

View File

@ -1,6 +1,8 @@
{
"complainted_mchid": "1900012181",
"response_content": "已与用户沟通解决",
"jump_url": "https://www.xxx.com/notify",
"jump_url_text": "查看订单详情",
"response_images": [
"file23578_21798531.jpg"
]