UrlsInterface.php 723 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * This file is part of the Klarna KP module
  4. *
  5. * (c) Klarna Bank AB (publ)
  6. *
  7. * For the full copyright and license information, please view the NOTICE
  8. * and LICENSE files that were distributed with this source code.
  9. */
  10. namespace Klarna\Kp\Api\Data;
  11. /**
  12. * Interface UrlsInterface
  13. *
  14. * @package Klarna\Kp\Api\Data
  15. */
  16. interface UrlsInterface extends ApiObjectInterface
  17. {
  18. /**
  19. * URL of merchant confirmation page.
  20. *
  21. * @param string $comfirmation
  22. */
  23. public function setConfirmation($comfirmation);
  24. /**
  25. * URL for notifications on pending orders. (max 2000 characters)
  26. *
  27. * @param string $notification
  28. */
  29. public function setNotification($notification);
  30. }