branch = $branch; } /** * @return string */ public function getBranch() { return $this->branch; } /** * This corresponds to SetDefaultBranchRequest.note field, when this branch * was set as default. * * @param string $note */ public function setNote($note) { $this->note = $note; } /** * @return string */ public function getNote() { return $this->note; } /** * The time when this branch is set to default. * * @param string $setTime */ public function setSetTime($setTime) { $this->setTime = $setTime; } /** * @return string */ public function getSetTime() { return $this->setTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRetailV2GetDefaultBranchResponse::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2GetDefaultBranchResponse');