namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /xpay/query_withdraw_order 接口的请求。 /// public class XPayQueryWithdrawOrderRequest : XPayRequestBase, IInferable { /// /// 获取或设置提现单号。 /// [Newtonsoft.Json.JsonProperty("withdraw_no")] [System.Text.Json.Serialization.JsonPropertyName("withdraw_no")] public string WithdrawNumber { get; set; } = string.Empty; protected internal override string GetRequestPath() { return "/xpay/query_withdraw_order"; } } }