Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 957 Bytes

File metadata and controls

30 lines (21 loc) · 957 Bytes

ErrorResponse401

Properties

Name Type Description Notes
type str
errors List[Error401]

Example

from mosquito_alert.models.error_response401 import ErrorResponse401

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

# convert the object into a dict
error_response401_dict = error_response401_instance.to_dict()
# create an instance of ErrorResponse401 from a dict
error_response401_from_dict = ErrorResponse401.from_dict(error_response401_dict)

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