InstanceRequestName.md

InstanceRequestName

Properties

Name Type Description Notes
name str Example: my_fn_name
instance_printer PrinterDetails [optional]
hints Hints [optional]

Example

from imandra_http_api_client.models.instance_request_name import InstanceRequestName

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

# convert the object into a dict
instance_request_name_dict = instance_request_name_instance.to_dict()
# create an instance of InstanceRequestName from a dict
instance_request_name_form_dict = instance_request_name.from_dict(instance_request_name_dict)

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