Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.19 KB

VerifyUserRegistrationRequest.md

File metadata and controls

28 lines (20 loc) · 1.19 KB

VerifyUserRegistrationRequest

Properties

Name Type Description Notes
otp int One-Time-Password (OTP) that was sent to the user based on the chosen factor. OneLogin SMS and OneLogin Email support this OTP code. [optional]

Example

from onelogin.models.verify_user_registration_request import VerifyUserRegistrationRequest

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

# convert the object into a dict
verify_user_registration_request_dict = verify_user_registration_request_instance.to_dict()
# create an instance of VerifyUserRegistrationRequest from a dict
verify_user_registration_request_form_dict = verify_user_registration_request.from_dict(verify_user_registration_request_dict)

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