| Name | Type | Description | Notes |
|---|
| addr_token | str | | |
| all_addr_tokens | List[str] | | |
| bit_offset | int | | |
| byte_offset | int | | |
| byte_size | int | | |
| count | int | | |
| data_type_index | int | | |
| field_status | str | | [optional] |
| function_id | int | | [optional] |
| imported_function_id | int | | [optional] |
| kind | str | | |
| name | str | | |
| name_source | str | | |
| needs_naming | bool | | |
| provenance | str | | |
| resolved_name | str | | |
| suggested_type | str | | |
| suggestion_confidence | str | | |
| token | str | | |
| type_index | int | | |
| vaddr | int | | |
| value | str | | |
| value_confidence | str | | |
| value_type | str | | |
fromrevengai.models.resolved_entityimportResolvedEntity# TODO update the JSON string belowjson="{}"# create an instance of ResolvedEntity from a JSON stringresolved_entity_instance=ResolvedEntity.from_json(json)
# print the JSON string representation of the objectprint(ResolvedEntity.to_json())
# convert the object into a dictresolved_entity_dict=resolved_entity_instance.to_dict()
# create an instance of ResolvedEntity from a dictresolved_entity_from_dict=ResolvedEntity.from_dict(resolved_entity_dict)[Back to Model list][Back to API list][Back to README]