actionType = $actionType; } /** * @return self::ACTION_TYPE_* */ public function getActionType() { return $this->actionType; } /** * Optional. The comment body. * * @param string $body */ public function setBody($body) { $this->body = $body; } /** * @return string */ public function getBody() { return $this->body; } /** * Output only. The effective commit sha this review is pointing to. * * @param string $effectiveCommitSha */ public function setEffectiveCommitSha($effectiveCommitSha) { $this->effectiveCommitSha = $effectiveCommitSha; } /** * @return string */ public function getEffectiveCommitSha() { return $this->effectiveCommitSha; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Review::class, 'Google_Service_SecureSourceManager_Review');