Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 986 Bytes

VerifyCodeResponse.md

File metadata and controls

29 lines (20 loc) · 986 Bytes

VerifyCodeResponse

Properties

Name Type Description Notes
valid bool Whether or not the supplied code is valid. [optional]

Example

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]