| Name |
Type |
Description |
Notes |
| code |
str |
An error code generated by the server |
[optional] |
| message |
str |
The error message that corresponds with the error code |
[optional] |
from ibutsu_client.models.login_error import LoginError
# TODO update the JSON string below
json = "{}"
# create an instance of LoginError from a JSON string
login_error_instance = LoginError.from_json(json)
# print the JSON string representation of the object
print(LoginError.to_json())
# convert the object into a dict
login_error_dict = login_error_instance.to_dict()
# create an instance of LoginError from a dict
login_error_from_dict = LoginError.from_dict(login_error_dict)
[Back to Model list] [Back to API list] [Back to README]