* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */ interface RmaShipmentManagementInterface { /** * Assign platform shipment IDs to a core RMA entity. * * @param int $rmaId * @param string[] $returnShipmentIds * * @return int Number of successfully assigned shipment IDs. * @throws \Magento\Framework\Exception\LocalizedException */ public function assignShipmentIds($rmaId, array $returnShipmentIds); }