Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

SupervisorSendOtpResponse.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

SupervisorSendOtpResponse

Properties

Name Type Description Notes
message str [optional]

Example

from callchimp.models.supervisor_send_otp_response import SupervisorSendOtpResponse

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

# convert the object into a dict
supervisor_send_otp_response_dict = supervisor_send_otp_response_instance.to_dict()
# create an instance of SupervisorSendOtpResponse from a dict
supervisor_send_otp_response_from_dict = SupervisorSendOtpResponse.from_dict(supervisor_send_otp_response_dict)

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