expirationTime = $expirationTime; } /** * @return string */ public function getExpirationTime() { return $this->expirationTime; } /** * The git_username to specify when making a git clone with the token. For * example, for GitHub GitRepositoryLinks, this would be "x-access-token" * * @param string $gitUsername */ public function setGitUsername($gitUsername) { $this->gitUsername = $gitUsername; } /** * @return string */ public function getGitUsername() { return $this->gitUsername; } /** * The token content. * * @param string $token */ public function setToken($token) { $this->token = $token; } /** * @return string */ public function getToken() { return $this->token; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FetchReadWriteTokenResponse::class, 'Google_Service_DeveloperConnect_FetchReadWriteTokenResponse');