14
14
* @method bool|null getAuthenticatorFlow()
15
15
* @method self withAuthenticatorFlow(?bool $authenticatorFlow)
16
16
*
17
- * @method string|null getFlowId()
18
- * @method self withFlowId(?string $flowId)
19
- *
20
- * @method string|null getId()
21
- * @method self withId(?string $id)
22
- *
23
- * @method string|null getParentFlow()
24
- * @method self withParentFlow(?string $parentFlow)
17
+ * @method string|null getFlowAlias()
18
+ * @method self withFlowAlias(?string $flowAlias)
25
19
*
26
20
* @method int|null getPriority()
27
21
* @method self withPriority(?int $priority)
28
22
*
29
23
* @method string|null getRequirement()
30
24
* @method self withRequirement(?string $requirement)
31
25
*
26
+ * @method bool|null getUserSetupAllowed()
27
+ * @method self withUserSetupAllowed(?bool $userSetupAllowed)
32
28
* @codeCoverageIgnore
33
29
*/
34
30
class AuthenticationExecutionExport extends Representation
@@ -37,10 +33,9 @@ public function __construct(
37
33
protected ?string $ authenticator = null ,
38
34
protected ?string $ authenticatorConfig = null ,
39
35
protected ?bool $ authenticatorFlow = null ,
40
- protected ?string $ flowId = null ,
41
- protected ?string $ id = null ,
42
- protected ?string $ parentFlow = null ,
36
+ protected ?string $ flowAlias = null ,
43
37
protected ?int $ priority = null ,
44
38
protected ?string $ requirement = null ,
39
+ protected ?bool $ userSetupAllowed = null ,
45
40
) {}
46
41
}
0 commit comments