1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
/**
* @author @jenschude <jens.schulze@commercetools.de>
*/
namespace Commercetools\Core\Request\Orders\Command;
use Commercetools\Core\Request\Carts\Command\CartAddPaymentAction;
use Commercetools\Core\Model\Payment\PaymentReference;
/**
* @package Commercetools\Core\Request\Orders\Command
* @link https://docs.commercetools.com/http-api-projects-orders.html#add-payment
* @method string getAction()
* @method OrderAddPaymentAction setAction(string $action = null)
* @method PaymentReference getPayment()
* @method OrderAddPaymentAction setPayment(PaymentReference $payment = null)
*/
class OrderAddPaymentAction extends CartAddPaymentAction
{
}