Name |
Type |
Description |
Notes |
valid |
bool |
Whether or not the supplied code is valid. |
[optional] |
from bandwidth.models.verify_code_response import VerifyCodeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyCodeResponse from a JSON string
verify_code_response_instance = VerifyCodeResponse.from_json(json)
# print the JSON string representation of the object
print(VerifyCodeResponse.to_json())
# convert the object into a dict
verify_code_response_dict = verify_code_response_instance.to_dict()
# create an instance of VerifyCodeResponse from a dict
verify_code_response_from_dict = VerifyCodeResponse.from_dict(verify_code_response_dict)
[Back to Model list] [Back to API list] [Back to README]