| Name | Type | Description | Notes |
|---|---|---|---|
| data_types | FunctionInfo | [optional] | |
| data_types_version | int | Current version of the function data types. Pass this back on the next write to satisfy the CAS check. | |
| function_id | int |
from revengai.models.data_types_entry import DataTypesEntry
# TODO update the JSON string below
json = "{}"
# create an instance of DataTypesEntry from a JSON string
data_types_entry_instance = DataTypesEntry.from_json(json)
# print the JSON string representation of the object
print(DataTypesEntry.to_json())
# convert the object into a dict
data_types_entry_dict = data_types_entry_instance.to_dict()
# create an instance of DataTypesEntry from a dict
data_types_entry_from_dict = DataTypesEntry.from_dict(data_types_entry_dict)