Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

DataTypesEntry

Properties

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

Example

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)

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