123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Api\Data;
- /**
- * Payment method interface.
- *
- * @api
- * @since 100.1.3
- */
- interface PaymentMethodInterface
- {
- /**
- * Get code.
- *
- * @return string
- * @since 100.1.3
- */
- public function getCode();
- /**
- * Get title.
- *
- * @return string
- * @since 100.1.3
- */
- public function getTitle();
- /**
- * Get store id.
- *
- * @return int
- * @since 100.1.3
- */
- public function getStoreId();
- /**
- * Get is active.
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- * @since 100.1.3
- */
- public function getIsActive();
- }
|