PaymentTokenInterfaceFactory.php 578 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Vault\Api\Data;
  7. /**
  8. * Interface PaymentTokenInterfaceFactory
  9. * @deprecated 101.0.0
  10. * @see PaymentTokenFactoryInterface
  11. * @codingStandardsIgnoreStart
  12. */
  13. interface PaymentTokenInterfaceFactory
  14. // @codingStandardsIgnoreEnd
  15. {
  16. /**
  17. * Create payment token entity
  18. * @return PaymentTokenInterface
  19. */
  20. public function create();
  21. /**
  22. * Return type of payment token
  23. * @return string
  24. */
  25. public function getType();
  26. }