feat(wxapi): 随官方更新视频号小店获取订单详情接口模型

This commit is contained in:
Fu Diwei
2024-11-04 20:38:17 +08:00
parent 412718722a
commit a0a056182d

View File

@@ -291,6 +291,15 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
[Newtonsoft.Json.JsonProperty("voucher_list")]
[System.Text.Json.Serialization.JsonPropertyName("voucher_list")]
public Types.Voucher[]? VoucherList { get; set; }
/// <summary>
/// 获取或设置是否为赠品。
/// </summary>
[Newtonsoft.Json.JsonProperty("is_free_gift")]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.Common.NumericalBooleanConverter))]
[System.Text.Json.Serialization.JsonPropertyName("is_free_gift")]
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalBooleanConverter))]
public bool? IsFreeGift { get; set; }
}
public class Payment