using PaySharp.Core.Request;
namespace PaySharp.Wechatpay.Response
{
public class ScanPayResponse : BaseResponse
{
///
/// 交易类型
///
public string TradeType { get; set; }
///
/// 微信生成的预支付回话标识,用于后续接口调用中使用,该值有效期为2小时
///
public string PrepayId { get; set; }
///
/// 二维码链接
///
public string CodeUrl { get; set; }
internal override void Execute(Merchant merchant, Request request)
{
}
}
}