1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Checkout\Api;
- /**
- * Interface for managing guest payment information
- * @api
- * @since 100.0.2
- */
- interface GuestPaymentInformationManagementInterface
- {
- /**
- * Set payment information and place order for a specified cart.
- *
- * @param string $cartId
- * @param string $email
- * @param \Magento\Quote\Api\Data\PaymentInterface $paymentMethod
- * @param \Magento\Quote\Api\Data\AddressInterface|null $billingAddress
- * @throws \Magento\Framework\Exception\CouldNotSaveException
- * @return int Order ID.
- */
- public function savePaymentInformationAndPlaceOrder(
- $cartId,
- $email,
- \Magento\Quote\Api\Data\PaymentInterface $paymentMethod,
- \Magento\Quote\Api\Data\AddressInterface $billingAddress = null
- );
- /**
- * Set payment information for a specified cart.
- *
- * @param string $cartId
- * @param string $email
- * @param \Magento\Quote\Api\Data\PaymentInterface $paymentMethod
- * @param \Magento\Quote\Api\Data\AddressInterface|null $billingAddress
- * @throws \Magento\Framework\Exception\CouldNotSaveException
- * @return int Order ID.
- */
- public function savePaymentInformation(
- $cartId,
- $email,
- \Magento\Quote\Api\Data\PaymentInterface $paymentMethod,
- \Magento\Quote\Api\Data\AddressInterface $billingAddress = null
- );
- /**
- * Get payment information
- *
- * @param string $cartId
- * @return \Magento\Checkout\Api\Data\PaymentDetailsInterface
- */
- public function getPaymentInformation($cartId);
- }
|