2022-01-25 13:24:49 +08:00
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [GET] /papay/h5entrustweb 接口的响应。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CreatePAPPayH5EntrustWebResponse : WechatTenpaySignableResponse
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-02-24 13:45:00 +08:00
|
|
|
|
/// <i>(请忽略此字段)</i>
|
2022-01-25 13:24:49 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public override string? MerchantId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-02-24 13:45:00 +08:00
|
|
|
|
/// <i>(请忽略此字段)</i>
|
2022-01-25 13:24:49 +08:00
|
|
|
|
/// </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!;
|
|
|
|
|
}
|
|
|
|
|
}
|