using PaySharp.Core.Request; namespace PaySharp.Wechatpay.Response { public class WapPayResponse : BaseResponse { /// /// 交易类型 /// public string TradeType { get; set; } /// /// 微信生成的预支付回话标识,用于后续接口调用中使用,该值有效期为2小时 /// public string PrepayId { get; set; } /// /// 支付跳转链接 /// mweb_url为拉起微信支付收银台的中间页面,可通过访问该url来拉起微信客户端,完成支付,mweb_url的有效期为5分钟。 /// public string MwebUrl { get; set; } internal override void Execute(Merchant merchant, Request request) { } } }