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
Arbitrary data returned by the SSO provider to complete the verification process.
verification_id
str
The ID of the EnterpriseSSO verification record.
Example
frompy_logto.models.verify_enterprise_sso_verification_requestimportVerifyEnterpriseSsoVerificationRequest# TODO update the JSON string belowjson="{}"# create an instance of VerifyEnterpriseSsoVerificationRequest from a JSON stringverify_enterprise_sso_verification_request_instance=VerifyEnterpriseSsoVerificationRequest.from_json(json)
# print the JSON string representation of the objectprint(VerifyEnterpriseSsoVerificationRequest.to_json())
# convert the object into a dictverify_enterprise_sso_verification_request_dict=verify_enterprise_sso_verification_request_instance.to_dict()
# create an instance of VerifyEnterpriseSsoVerificationRequest from a dictverify_enterprise_sso_verification_request_from_dict=VerifyEnterpriseSsoVerificationRequest.from_dict(verify_enterprise_sso_verification_request_dict)