EvalResponse.md

EvalResponse

Properties

Name Type Description Notes
success bool
stdout str [optional]
stderr str [optional]

Example

from imandra_http_api_client.models.eval_response import EvalResponse

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

# convert the object into a dict
eval_response_dict = eval_response_instance.to_dict()
# create an instance of EvalResponse from a dict
eval_response_form_dict = eval_response.from_dict(eval_response_dict)

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