feat(wxapi): 随官方更新微信小店获取拒绝售后原因接口模型

This commit is contained in:
Fu Diwei
2025-09-29 20:58:05 +08:00
parent 17d9326812
commit b10fc4a651
2 changed files with 19 additions and 9 deletions

View File

@@ -29,6 +29,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
[Newtonsoft.Json.JsonProperty("reject_reason")]
[System.Text.Json.Serialization.JsonPropertyName("reject_reason")]
public string? RejectReasonDescription { get; set; }
/// <summary>
/// 获取或设置售后拒绝原因适用场景。
/// </summary>
[Newtonsoft.Json.JsonProperty("reject_scene")]
[System.Text.Json.Serialization.JsonPropertyName("reject_scene")]
public int RejectScene { get; set; }
}
}