FundFlowDownloadRequest.cs 552 B

1234567891011121314151617181920
  1. using PaySharp.Wechatpay.Domain;
  2. using PaySharp.Wechatpay.Response;
  3. namespace PaySharp.Wechatpay.Request
  4. {
  5. public class FundFlowDownloadRequest : BaseRequest<FundFlowDownloadModel, FundFlowDownloadResponse>
  6. {
  7. public FundFlowDownloadRequest()
  8. {
  9. RequestUrl = "/pay/downloadfundflow";
  10. IsUseCert = true;
  11. }
  12. internal override void Execute(Merchant merchant)
  13. {
  14. GatewayData.Remove("notify_url");
  15. GatewayData.Add("sign_type", "HMAC-SHA256");
  16. }
  17. }
  18. }