WapPayResponse.cs 872 B

123456789101112131415161718192021222324252627
  1. using PaySharp.Core.Request;
  2. namespace PaySharp.Wechatpay.Response
  3. {
  4. public class WapPayResponse : BaseResponse
  5. {
  6. /// <summary>
  7. /// 交易类型
  8. /// </summary>
  9. public string TradeType { get; set; }
  10. /// <summary>
  11. /// 微信生成的预支付回话标识,用于后续接口调用中使用,该值有效期为2小时
  12. /// </summary>
  13. public string PrepayId { get; set; }
  14. /// <summary>
  15. /// 支付跳转链接
  16. /// mweb_url为拉起微信支付收银台的中间页面,可通过访问该url来拉起微信客户端,完成支付,mweb_url的有效期为5分钟。
  17. /// </summary>
  18. public string MwebUrl { get; set; }
  19. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  20. {
  21. }
  22. }
  23. }