ResponseError.md

ResponseError

Properties

Name Type Description Notes
error str
stdout str [optional]
stderr str [optional]

Example

from imandra_http_api_client.models.response_error import ResponseError

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

# convert the object into a dict
response_error_dict = response_error_instance.to_dict()
# create an instance of ResponseError from a dict
response_error_form_dict = response_error.from_dict(response_error_dict)

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