ResponseInstance.md

ResponseInstance

Properties

Name Type Description Notes
model ResponseModel [optional]
type InstanceType [optional]
src str [optional]

Example

from imandra_http_api_client.models.response_instance import ResponseInstance

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

# convert the object into a dict
response_instance_dict = response_instance_instance.to_dict()
# create an instance of ResponseInstance from a dict
response_instance_form_dict = response_instance.from_dict(response_instance_dict)

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