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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
<?php
/**
*
*/
namespace Commercetools\Core\Request\OrderEdits\StagedOrder\Command;
use Commercetools\Core\Request\Carts\Command\CartAddLineItemAction;
use Commercetools\Core\Model\Channel\ChannelReference;
use Commercetools\Core\Model\CustomField\CustomFieldObjectDraft;
use Commercetools\Core\Model\TaxCategory\ExternalTaxRateDraft;
use Commercetools\Core\Model\Common\Money;
use Commercetools\Core\Model\Cart\ExternalLineItemTotalPrice;
use Commercetools\Core\Model\Cart\ItemShippingDetailsDraft;
use DateTime;
/**
* @package Commercetools\Core\Request\OrderEdits\StagedOrder\Command
*
* @method string getAction()
* @method StagedOrderAddLineItemAction setAction(string $action = null)
* @method string getProductId()
* @method StagedOrderAddLineItemAction setProductId(string $productId = null)
* @method int getVariantId()
* @method StagedOrderAddLineItemAction setVariantId(int $variantId = null)
* @method string getSku()
* @method StagedOrderAddLineItemAction setSku(string $sku = null)
* @method int getQuantity()
* @method StagedOrderAddLineItemAction setQuantity(int $quantity = null)
* @method ChannelReference getSupplyChannel()
* @method StagedOrderAddLineItemAction setSupplyChannel(ChannelReference $supplyChannel = null)
* @method ChannelReference getDistributionChannel()
* @method StagedOrderAddLineItemAction setDistributionChannel(ChannelReference $distributionChannel = null)
* @method CustomFieldObjectDraft getCustom()
* @method StagedOrderAddLineItemAction setCustom(CustomFieldObjectDraft $custom = null)
* @method ExternalTaxRateDraft getExternalTaxRate()
* @method StagedOrderAddLineItemAction setExternalTaxRate(ExternalTaxRateDraft $externalTaxRate = null)
* @method Money getExternalPrice()
* @method StagedOrderAddLineItemAction setExternalPrice(Money $externalPrice = null)
* @method ExternalLineItemTotalPrice getExternalTotalPrice()
* @method StagedOrderAddLineItemAction setExternalTotalPrice(ExternalLineItemTotalPrice $externalTotalPrice = null)
* @method ItemShippingDetailsDraft getShippingDetails()
* @method StagedOrderAddLineItemAction setShippingDetails(ItemShippingDetailsDraft $shippingDetails = null)
* @method DateTime getAddedAt()
* @method StagedOrderAddLineItemAction setAddedAt(DateTime $addedAt = null)
*/
class StagedOrderAddLineItemAction extends CartAddLineItemAction implements StagedOrderUpdateAction
{
}