changePasswordUri = $changePasswordUri; } /** * @return string */ public function getChangePasswordUri() { return $this->changePasswordUri; } /** * Required. The Issuer identifier for the IdP. Must be a URL. The discovery * URL will be derived from this as described in Section 4 of [the OIDC * specification](https://openid.net/specs/openid-connect-discovery-1_0.html). * * @param string $issuerUri */ public function setIssuerUri($issuerUri) { $this->issuerUri = $issuerUri; } /** * @return string */ public function getIssuerUri() { return $this->issuerUri; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OidcIdpConfig::class, 'Google_Service_CloudIdentity_OidcIdpConfig');