_init(ResourceModel::class); } /** * Get Vertex Customer Code * * @return string */ public function getCustomerCode() { return $this->getData(static::FIELD_CODE); } /** * Set Vertex Customer Code * * @param string $customerCode * @return $this */ public function setCustomerCode($customerCode) { return $this->setData(static::FIELD_CODE, $customerCode); } /** * Get Customer ID * * @return int */ public function getCustomerId() { return $this->getId(); } /** * Set Customer ID * * @param int $customerId * @return $this */ public function setCustomerId($customerId) { return $this->setId($customerId); } }