| Name | Type | Description | Notes |
|---|
| type | str | The source (process) the function name came from | |
| function_id | int | | [optional] |
| binary_id | int | | [optional] |
| analysis_id | int | | [optional] |
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]