* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com */ class ShipmentItem extends DataObject implements ShipmentItemInterface { /** * @return int */ public function getQty() { return $this->getData(PackageItemInterface::QTY); } /** * @return string */ public function getSku() { return $this->getData(PackageItemInterface::SKU); } }