namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /cgi-bin/midas/pay 接口的响应。 /// public class CgibinMidasPayResponse : WechatApiResponse { /// /// 获取或设置订单号。 /// [Newtonsoft.Json.JsonProperty("bill_no")] [System.Text.Json.Serialization.JsonPropertyName("bill_no")] public string BillNumber { get; set; } = default!; /// /// 获取或设置预扣后的余额。 /// [Newtonsoft.Json.JsonProperty("balance")] [System.Text.Json.Serialization.JsonPropertyName("balance")] public int Balance { get; set; } /// /// 获取或设置本次扣的赠送币的金额。 /// [Newtonsoft.Json.JsonProperty("used_gen_amt")] [System.Text.Json.Serialization.JsonPropertyName("used_gen_amt")] public int UsedGenAmount { get; set; } } }