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 unique ID of the verification record. Required to verify the code.
Example
frompy_logto.models.create_and_send_verification_code200_responseimportCreateAndSendVerificationCode200Response# TODO update the JSON string belowjson="{}"# create an instance of CreateAndSendVerificationCode200Response from a JSON stringcreate_and_send_verification_code200_response_instance=CreateAndSendVerificationCode200Response.from_json(json)
# print the JSON string representation of the objectprint(CreateAndSendVerificationCode200Response.to_json())
# convert the object into a dictcreate_and_send_verification_code200_response_dict=create_and_send_verification_code200_response_instance.to_dict()
# create an instance of CreateAndSendVerificationCode200Response from a dictcreate_and_send_verification_code200_response_from_dict=CreateAndSendVerificationCode200Response.from_dict(create_and_send_verification_code200_response_dict)