mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
21 lines
735 B
C#
21 lines
735 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /xpay/query_withdraw_order 接口的请求。</para>
|
|
/// </summary>
|
|
public class XPayQueryWithdrawOrderRequest : XPayRequestBase, IInferable<XPayQueryWithdrawOrderRequest, XPayQueryWithdrawOrderResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置提现单号。
|
|
/// </summary>
|
|
[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";
|
|
}
|
|
}
|
|
}
|