Name |
Type |
Description |
Notes |
attr |
str |
|
|
code |
str |
|
|
detail |
str |
|
|
from mosquito_alert.models.auth_change_password_error import AuthChangePasswordError
# TODO update the JSON string below
json = "{}"
# create an instance of AuthChangePasswordError from a JSON string
auth_change_password_error_instance = AuthChangePasswordError.from_json(json)
# print the JSON string representation of the object
print(AuthChangePasswordError.to_json())
# convert the object into a dict
auth_change_password_error_dict = auth_change_password_error_instance.to_dict()
# create an instance of AuthChangePasswordError from a dict
auth_change_password_error_from_dict = AuthChangePasswordError.from_dict(auth_change_password_error_dict)
[Back to Model list] [Back to API list] [Back to README]