orderId; } /** * @param mixed $orderId * @return StoreOrderStatusEntity */ public function setOrderId($orderId): StoreOrderStatusEntity { $this->orderId = (string)$orderId; return $this; } /** * @return mixed */ public function getChangeType() { return $this->changeType; } /** * @param mixed $changeType * @return StoreOrderStatusEntity */ public function setChangeType($changeType): StoreOrderStatusEntity { $this->changeType = $changeType; return $this; } /** * @return mixed */ public function getChangeMessage() { return $this->changeMessage; } /** * @param mixed $changeMessage * @return StoreOrderStatusEntity */ public function setChangeMessage($changeMessage): StoreOrderStatusEntity { $this->changeMessage = $changeMessage; return $this; } /** * @return mixed */ public function getChangeTime() { return $this->changeTime; } /** * @param mixed $changeTime * @return StoreOrderStatusEntity */ public function setChangeTime($changeTime): StoreOrderStatusEntity { $this->changeTime = $changeTime; return $this; } }