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 identifier verification record ID for the new email ownership verification.
Example
frompy_logto.models.update_primary_email_requestimportUpdatePrimaryEmailRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdatePrimaryEmailRequest from a JSON stringupdate_primary_email_request_instance=UpdatePrimaryEmailRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdatePrimaryEmailRequest.to_json())
# convert the object into a dictupdate_primary_email_request_dict=update_primary_email_request_instance.to_dict()
# create an instance of UpdatePrimaryEmailRequest from a dictupdate_primary_email_request_from_dict=UpdatePrimaryEmailRequest.from_dict(update_primary_email_request_dict)