1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\InstantPurchase\PaymentMethodIntegration;
- /**
- * Provides mechanism to configure availability of vault integration with instant purchase.
- *
- * May implement any logic specific for a payment method and configured with
- * instant_purchase/available configuration option in vault payment config.
- *
- * @api
- * @since 100.2.0
- */
- interface AvailabilityCheckerInterface
- {
- /**
- * Checks if payment method may be used for instant purchase.
- *
- * @return bool
- * @since 100.2.0
- */
- public function isAvailable(): bool;
- }
|