author = $author; } /** * @return CommitAuthor */ public function getAuthor() { return $this->author; } /** * @param string */ public function setCommitMessage($commitMessage) { $this->commitMessage = $commitMessage; } /** * @return string */ public function getCommitMessage() { return $this->commitMessage; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CommitMetadata::class, 'Google_Service_Dataform_CommitMetadata');