AgreementExecutionPlanModifyPlugin.php 373 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Plugin\Alipay\User;
  4. use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
  5. /**
  6. * @see https://opendocs.alipay.com/open/02fkaq?ref=api
  7. */
  8. class AgreementExecutionPlanModifyPlugin extends GeneralPlugin
  9. {
  10. protected function getMethod(): string
  11. {
  12. return 'alipay.user.agreement.executionplan.modify';
  13. }
  14. }