Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 884 Bytes

ErrorsResponse.md

File metadata and controls

28 lines (20 loc) · 884 Bytes

ErrorsResponse

Properties

Name Type Description Notes
errors object

Example

from aim_platform_sdk.models.errors_response import ErrorsResponse

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

# convert the object into a dict
errors_response_dict = errors_response_instance.to_dict()
# create an instance of ErrorsResponse from a dict
errors_response_form_dict = errors_response.from_dict(errors_response_dict)

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