You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""The URL to go to when an admin clicks on your logo in the Admin Portal. If not specified, the return URL configured on the [Redirects](https://dashboard.workos.com/redirects) page will be used."""
20
-
success_url: Optional[str]=None
21
+
success_url: str|None=None
21
22
"""The URL to redirect the admin to when they finish setup. If not specified, the success URL configured on the [Redirects](https://dashboard.workos.com/redirects) page will be used."""
22
-
intent: Optional["GenerateLinkIntent"]=None
23
+
intent: GenerateLinkIntent|None=None
23
24
"""
24
25
The intent of the Admin Portal.
25
26
- `sso` - Launch Admin Portal for creating SSO connections
@@ -29,11 +30,11 @@ class GenerateLink:
29
30
- `domain_verification` - Launch Admin Portal for Domain Verification
30
31
- `certificate_renewal` - Launch Admin Portal for renewing SAML Certificates
31
32
- `bring_your_own_key` - Launch Admin Portal for configuring Bring Your Own Key"""
32
-
it_contact_emails: Optional[List[str]]=None
33
+
it_contact_emails: list[str]|None=None
33
34
"""The email addresses of the IT contacts to grant access to the Admin Portal for the given organization. Accepts up to 20 emails."""
0 commit comments