Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

NameSourceType

Properties

NameTypeDescriptionNotes
typestrThe source (process) the function name came from
function_idint[optional]
binary_idint[optional]
analysis_idint[optional]

Example

fromrevengai.models.name_source_typeimportNameSourceType# TODO update the JSON string belowjson="{}"# create an instance of NameSourceType from a JSON stringname_source_type_instance=NameSourceType.from_json(json)
# print the JSON string representation of the objectprint(NameSourceType.to_json())
# convert the object into a dictname_source_type_dict=name_source_type_instance.to_dict()
# create an instance of NameSourceType from a dictname_source_type_from_dict=NameSourceType.from_dict(name_source_type_dict)

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