orderItemId; } /** * {@inheritdoc} */ public function setOrderItemId($orderItemId) { $this->orderItemId = $orderItemId; return $this; } /** * {@inheritdoc} */ public function getQty() { return $this->qty; } /** * {@inheritdoc} */ public function setQty($qty) { $this->qty = $qty; return $this; } /** * {@inheritdoc} * * @return \Magento\Sales\Api\Data\ShipmentItemCreationExtensionInterface|null */ public function getExtensionAttributes() { return $this->extensionAttributes; } /** * {@inheritdoc} * * @param \Magento\Sales\Api\Data\ShipmentItemCreationExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes( \Magento\Sales\Api\Data\ShipmentItemCreationExtensionInterface $extensionAttributes ) { $this->extensionAttributes = $extensionAttributes; return $this; } //@codeCoverageIgnoreEnd }