"oauth_uri", ]; /** * @var string */ public $createTime; /** * @var string */ public $oauthUri; /** * @var bool */ public $success; /** * @param string */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * @param string */ public function setOauthUri($oauthUri) { $this->oauthUri = $oauthUri; } /** * @return string */ public function getOauthUri() { return $this->oauthUri; } /** * @param bool */ public function setSuccess($success) { $this->success = $success; } /** * @return bool */ public function getSuccess() { return $this->success; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CheckAuthorizationResponse::class, 'Google_Service_AIPlatformNotebooks_CheckAuthorizationResponse');