| Name | Type | Description | Notes |
|---|
| function_id | int | | |
| function_name | str | Current name of the function. | |
fromrevengai.models.data_type_function_entryimportDataTypeFunctionEntry# TODO update the JSON string belowjson="{}"# create an instance of DataTypeFunctionEntry from a JSON stringdata_type_function_entry_instance=DataTypeFunctionEntry.from_json(json)
# print the JSON string representation of the objectprint(DataTypeFunctionEntry.to_json())
# convert the object into a dictdata_type_function_entry_dict=data_type_function_entry_instance.to_dict()
# create an instance of DataTypeFunctionEntry from a dictdata_type_function_entry_from_dict=DataTypeFunctionEntry.from_dict(data_type_function_entry_dict)[Back to Model list][Back to API list][Back to README]