resources = $resources; } /** * @return Resources */ public function getResources() { return $this->resources; } /** * A URI that, when opened, will allow the end user to save the object(s) * identified in the JWT to their Google account. * * @param string $saveUri */ public function setSaveUri($saveUri) { $this->saveUri = $saveUri; } /** * @return string */ public function getSaveUri() { return $this->saveUri; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(JwtInsertResponse::class, 'Google_Service_Walletobjects_JwtInsertResponse');