| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Api/Data/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Api/Data/PaymentMethodInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Quote\Api\Data;
/**
* Interface PaymentMethodInterface
* @api
* @since 100.0.2
*/
interface PaymentMethodInterface
{
/**
* Get payment method code
*
* @return string
*/
public function getCode();
/**
* Get payment method title
*
* @return string
*/
public function getTitle();
}