Skip to content

Commit b64bdee

Browse files
authored
Merge pull request #66 from franbuzz/main
Fix type totp from string to bool
2 parents c34711d + 31631ab commit b64bdee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Representation/User.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @method array|null getRequiredActions()
3333
* @method string|null getSelf()
3434
* @method string|null getServiceAccountClientId()
35-
* @method string|null getTotp()
35+
* @method bool|null getTotp()
3636
* @method string|null getUsername()
3737
* @method self withAccess(?Map $access)
3838
* @method self withAttributes(?Map $attributes)
@@ -56,7 +56,7 @@
5656
* @method self withRequiredActions(?array $requiredActions)
5757
* @method self withSelf(?string $self)
5858
* @method self withServiceAccountClientId(?string $serviceAccountClientId)
59-
* @method self withTotp(?string $totp)
59+
* @method self withTotp(?bool $totp)
6060
* @method self withUsername(?string $username)
6161
*
6262
* @codeCoverageIgnore
@@ -90,7 +90,7 @@ public function __construct(
9090
protected ?array $requiredActions = null,
9191
protected ?string $self = null,
9292
protected ?string $serviceAccountClientId = null,
93-
protected ?string $totp = null,
93+
protected ?bool $totp = null,
9494
protected ?string $username = null,
9595
) {
9696
}

0 commit comments

Comments
 (0)