123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Gateway\Http;
- /**
- * Interface ConverterInterface
- * @package Magento\Payment\Gateway\Http
- * @api
- * @since 100.0.2
- */
- interface ConverterInterface
- {
- /**
- * Converts gateway response to ENV structure
- *
- * @param mixed $response
- * @return array
- * @throws \Magento\Payment\Gateway\Http\ConverterException
- */
- public function convert($response);
- }
|