Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.06 KB

File metadata and controls

28 lines (20 loc) · 1.06 KB

VerifyOtpRequest

Properties

Name Type Description Notes
access_code str The one-time password received by the user through the specified channel or alternative channel (optional) in the generation request that needs to be validated. An integer from 3 to 9 digits.

Example

from bsg_api.models.verify_otp_request import VerifyOtpRequest

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

# convert the object into a dict
verify_otp_request_dict = verify_otp_request_instance.to_dict()
# create an instance of VerifyOtpRequest from a dict
verify_otp_request_from_dict = VerifyOtpRequest.from_dict(verify_otp_request_dict)

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