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 authorization URI to navigate to for authentication and authorization in the connected social identity provider.
expires_at
str
The expiration date and time of the verification record.
Example
frompy_logto.models.create_verification_by_social201_responseimportCreateVerificationBySocial201Response# TODO update the JSON string belowjson="{}"# create an instance of CreateVerificationBySocial201Response from a JSON stringcreate_verification_by_social201_response_instance=CreateVerificationBySocial201Response.from_json(json)
# print the JSON string representation of the objectprint(CreateVerificationBySocial201Response.to_json())
# convert the object into a dictcreate_verification_by_social201_response_dict=create_verification_by_social201_response_instance.to_dict()
# create an instance of CreateVerificationBySocial201Response from a dictcreate_verification_by_social201_response_from_dict=CreateVerificationBySocial201Response.from_dict(create_verification_by_social201_response_dict)