1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<?php
/**
*
*/
namespace Commercetools\Core\Request\OrderEdits\StagedOrder\Command;
use Commercetools\Core\Request\Orders\Command\OrderAddDeliveryAction;
use Commercetools\Core\Model\Order\DeliveryItemCollection;
use Commercetools\Core\Model\Order\ParcelCollection;
use Commercetools\Core\Model\Common\Address;
use Commercetools\Core\Model\CustomField\CustomFieldObject;
/**
* @package Commercetools\Core\Request\OrderEdits\StagedOrder\Command
*
* @method string getAction()
* @method StagedOrderAddDeliveryAction setAction(string $action = null)
* @method DeliveryItemCollection getItems()
* @method StagedOrderAddDeliveryAction setItems(DeliveryItemCollection $items = null)
* @method ParcelCollection getParcels()
* @method StagedOrderAddDeliveryAction setParcels(ParcelCollection $parcels = null)
* @method Address getAddress()
* @method StagedOrderAddDeliveryAction setAddress(Address $address = null)
* @method CustomFieldObject getCustom()
* @method StagedOrderAddDeliveryAction setCustom(CustomFieldObject $custom = null)
*/
class StagedOrderAddDeliveryAction extends OrderAddDeliveryAction implements StagedOrderUpdateAction
{
}