_init(\Magento\MessageQueue\Model\ResourceModel\Lock::class); } /** * Get message code * * @return string */ public function getMessageCode() { return $this->_getData('message_code'); } /** * Set message code * * @param string $value * @return $this */ public function setMessageCode($value) { return $this->setData('message_code', $value); } /** * Get lock date * * @return string */ public function getCreatedAt() { return $this->_getData('created_at'); } /** * Set lock date * * @param string $value * @return $this */ public function setCreatedAt($value) { return $this->setData('created_at', $value); } }