123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Api;
- /**
- * Payment method list interface.
- *
- * @api
- * @since 100.1.3
- */
- interface PaymentMethodListInterface
- {
- /**
- * Get list of payment methods.
- *
- * @param int $storeId
- * @return \Magento\Payment\Api\Data\PaymentMethodInterface[]
- * @since 100.1.3
- */
- public function getList($storeId);
- /**
- * Get list of active payment methods.
- *
- * @param int $storeId
- * @return \Magento\Payment\Api\Data\PaymentMethodInterface[]
- * @since 100.1.3
- */
- public function getActiveList($storeId);
- }
|