Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

CreateAndSendVerificationCodeRequestIdentifier.md

File metadata and controls

31 lines (22 loc) · 1.39 KB

CreateAndSendVerificationCodeRequestIdentifier

The identifier (email address or phone number) to send the verification code to.

Properties

Name Type Description Notes
type str
value str

Example

from py_logto.models.create_and_send_verification_code_request_identifier import CreateAndSendVerificationCodeRequestIdentifier

# TODO update the JSON string below
json = "{}"
# create an instance of CreateAndSendVerificationCodeRequestIdentifier from a JSON string
create_and_send_verification_code_request_identifier_instance = CreateAndSendVerificationCodeRequestIdentifier.from_json(json)
# print the JSON string representation of the object
print(CreateAndSendVerificationCodeRequestIdentifier.to_json())

# convert the object into a dict
create_and_send_verification_code_request_identifier_dict = create_and_send_verification_code_request_identifier_instance.to_dict()
# create an instance of CreateAndSendVerificationCodeRequestIdentifier from a dict
create_and_send_verification_code_request_identifier_from_dict = CreateAndSendVerificationCodeRequestIdentifier.from_dict(create_and_send_verification_code_request_identifier_dict)

[Back to Model list] [Back to API list] [Back to README]