mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
16 lines
565 B
C#
16 lines
565 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /mch_operate/risk/withdrawl-apply/applyment-id/{applyment_id} 接口的请求。</para>
|
|
/// </summary>
|
|
public class GetMerchantOperateRiskWithdrawlApplyByApplymentIdRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置提现申请单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string ApplymentId { get; set; } = string.Empty;
|
|
}
|
|
}
|