namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models { /// /// 表示 [GET] /papay/h5entrustweb 接口的响应。 /// public class CreatePAPPayH5EntrustWebResponse : WechatTenpaySignableResponse { /// /// (请忽略此字段) /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] public override string? MerchantId { get; set; } /// /// (请忽略此字段) /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] public override string? AppId { get; set; } /// /// 获取或设置签约页面 URL。 /// [Newtonsoft.Json.JsonProperty("redirect_url")] [System.Text.Json.Serialization.JsonPropertyName("redirect_url")] public string RedirectUrl { get; set; } = default!; } }