![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/generated/code/Magento/Sales/Api/Data/ |
<?php namespace Magento\Sales\Api\Data; /** * Extension class for @see \Magento\Sales\Api\Data\OrderInterface */ class OrderExtension extends \Magento\Framework\Api\AbstractSimpleObject implements OrderExtensionInterface { /** * @return \Magento\Sales\Api\Data\ShippingAssignmentInterface[]|null */ public function getShippingAssignments() { return $this->_get('shipping_assignments'); } /** * @param \Magento\Sales\Api\Data\ShippingAssignmentInterface[] $shippingAssignments * @return $this */ public function setShippingAssignments($shippingAssignments) { $this->setData('shipping_assignments', $shippingAssignments); return $this; } /** * @return \Magento\Payment\Api\Data\PaymentAdditionalInfoInterface[]|null */ public function getPaymentAdditionalInfo() { return $this->_get('payment_additional_info'); } /** * @param \Magento\Payment\Api\Data\PaymentAdditionalInfoInterface[] $paymentAdditionalInfo * @return $this */ public function setPaymentAdditionalInfo($paymentAdditionalInfo) { $this->setData('payment_additional_info', $paymentAdditionalInfo); return $this; } /** * @return \Magento\GiftMessage\Api\Data\MessageInterface|null */ public function getGiftMessage() { return $this->_get('gift_message'); } /** * @param \Magento\GiftMessage\Api\Data\MessageInterface $giftMessage * @return $this */ public function setGiftMessage(\Magento\GiftMessage\Api\Data\MessageInterface $giftMessage) { $this->setData('gift_message', $giftMessage); return $this; } /** * @return \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxInterface[]|null */ public function getAppliedTaxes() { return $this->_get('applied_taxes'); } /** * @param \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxInterface[] $appliedTaxes * @return $this */ public function setAppliedTaxes($appliedTaxes) { $this->setData('applied_taxes', $appliedTaxes); return $this; } /** * @return \Magento\Tax\Api\Data\OrderTaxDetailsItemInterface[]|null */ public function getItemAppliedTaxes() { return $this->_get('item_applied_taxes'); } /** * @param \Magento\Tax\Api\Data\OrderTaxDetailsItemInterface[] $itemAppliedTaxes * @return $this */ public function setItemAppliedTaxes($itemAppliedTaxes) { $this->setData('item_applied_taxes', $itemAppliedTaxes); return $this; } /** * @return boolean|null */ public function getConvertingFromQuote() { return $this->_get('converting_from_quote'); } /** * @param boolean $convertingFromQuote * @return $this */ public function setConvertingFromQuote($convertingFromQuote) { $this->setData('converting_from_quote', $convertingFromQuote); return $this; } /** * @return string|null */ public function getPaymentMethodType() { return $this->_get('payment_method_type'); } /** * @param string $paymentMethodType * @return $this */ public function setPaymentMethodType($paymentMethodType) { $this->setData('payment_method_type', $paymentMethodType); return $this; } /** * @return string|null */ public function getPaymentMethodCardData() { return $this->_get('payment_method_card_data'); } /** * @param string $paymentMethodCardData * @return $this */ public function setPaymentMethodCardData($paymentMethodCardData) { $this->setData('payment_method_card_data', $paymentMethodCardData); return $this; } }