mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
30 lines
1012 B
C#
30 lines
1012 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /papay/h5entrustweb 接口的响应。</para>
|
|
/// </summary>
|
|
public class CreatePAPPayH5EntrustWebResponse : WechatTenpaySignableResponse
|
|
{
|
|
/// <summary>
|
|
/// <i>(请忽略此字段)</i>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public override string? MerchantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// <i>(请忽略此字段)</i>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public override string? AppId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置签约页面 URL。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("redirect_url")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("redirect_url")]
|
|
public string RedirectUrl { get; set; } = default!;
|
|
}
|
|
}
|