Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 949 Bytes

File metadata and controls

30 lines (21 loc) · 949 Bytes

VerifyCodeRequest

Properties

Name Type Description Notes
code str
password str

Example

from halo_client.models.verify_code_request import VerifyCodeRequest

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

# convert the object into a dict
verify_code_request_dict = verify_code_request_instance.to_dict()
# create an instance of VerifyCodeRequest from a dict
verify_code_request_from_dict = VerifyCodeRequest.from_dict(verify_code_request_dict)

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