Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

DataTypeFunctionEntry

Properties

NameTypeDescriptionNotes
function_idint
function_namestrCurrent name of the function.

Example

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]