diff --git a/src/Representation/IdentityProvider.php b/src/Representation/IdentityProvider.php index 0749691..5b46089 100644 --- a/src/Representation/IdentityProvider.php +++ b/src/Representation/IdentityProvider.php @@ -34,6 +34,9 @@ * @method string|null getPostBrokerLoginFlowAlias() * @method self withPostBrokerLoginFlowAlias(?string $postBrokerLoginFlowAlias) * + * @method bool|null getHideOnLogin() + * @method self withHideOnLogin(?bool $hideOnLogin) + * * @method string|null getProviderId() * @method self withProviderId(?string $providerId) * @@ -54,6 +57,7 @@ public function __construct( protected ?string $displayName = null, protected ?bool $enabled = null, protected ?string $firstBrokerLoginFlowAlias = null, + protected ?bool $hideOnLogin = null, protected ?string $internalId = null, protected ?bool $linkOnly = null, protected ?string $postBrokerLoginFlowAlias = null,