You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Single error message (when only one error occurred)
[optional]
errors
List[str]
Array of error messages (when multiple validation errors occurred)
[optional]
Example
fromdocspring.models.error_or_multiple_errors_responseimportErrorOrMultipleErrorsResponse# TODO update the JSON string belowjson="{}"# create an instance of ErrorOrMultipleErrorsResponse from a JSON stringerror_or_multiple_errors_response_instance=ErrorOrMultipleErrorsResponse.from_json(json)
# print the JSON string representation of the objectprint(ErrorOrMultipleErrorsResponse.to_json())
# convert the object into a dicterror_or_multiple_errors_response_dict=error_or_multiple_errors_response_instance.to_dict()
# create an instance of ErrorOrMultipleErrorsResponse from a dicterror_or_multiple_errors_response_from_dict=ErrorOrMultipleErrorsResponse.from_dict(error_or_multiple_errors_response_dict)