ResponseModel.md

ResponseModel

Properties

Name Type Description Notes
syntax Syntax [optional]
src str Source code string with a given syntax (default Iml) [optional]

Example

from imandra_http_api_client.models.response_model import ResponseModel

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

# convert the object into a dict
response_model_dict = response_model_instance.to_dict()
# create an instance of ResponseModel from a dict
response_model_form_dict = response_model.from_dict(response_model_dict)

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