VerifyRequestSrc.md

VerifyRequestSrc

Properties

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

Example

from imandra_http_api_client.models.verify_request_src import VerifyRequestSrc

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

# convert the object into a dict
verify_request_src_dict = verify_request_src_instance.to_dict()
# create an instance of VerifyRequestSrc from a dict
verify_request_src_form_dict = verify_request_src.from_dict(verify_request_src_dict)

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