Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

SupervisorVerifyOtpRequest.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

SupervisorVerifyOtpRequest

Properties

Name Type Description Notes
otp int [optional]

Example

from callchimp.models.supervisor_verify_otp_request import SupervisorVerifyOtpRequest

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

# convert the object into a dict
supervisor_verify_otp_request_dict = supervisor_verify_otp_request_instance.to_dict()
# create an instance of SupervisorVerifyOtpRequest from a dict
supervisor_verify_otp_request_from_dict = SupervisorVerifyOtpRequest.from_dict(supervisor_verify_otp_request_dict)

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