ScanPayResponse.cs 707 B

1234567891011121314151617181920212223242526
  1. using PaySharp.Core.Request;
  2. namespace PaySharp.Wechatpay.Response
  3. {
  4. public class ScanPayResponse : 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. /// </summary>
  17. public string CodeUrl { get; set; }
  18. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  19. {
  20. }
  21. }
  22. }