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 URI to redirect the user after the SSO authorization is completed.
Example
frompy_logto.models.create_enterprise_sso_verification_requestimportCreateEnterpriseSsoVerificationRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateEnterpriseSsoVerificationRequest from a JSON stringcreate_enterprise_sso_verification_request_instance=CreateEnterpriseSsoVerificationRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateEnterpriseSsoVerificationRequest.to_json())
# convert the object into a dictcreate_enterprise_sso_verification_request_dict=create_enterprise_sso_verification_request_instance.to_dict()
# create an instance of CreateEnterpriseSsoVerificationRequest from a dictcreate_enterprise_sso_verification_request_from_dict=CreateEnterpriseSsoVerificationRequest.from_dict(create_enterprise_sso_verification_request_dict)