Skip to content

Latest commit

History

History
52 lines (43 loc) · 1.61 KB

File metadata and controls

52 lines (43 loc) · 1.61 KB

ResolvedEntity

Properties

NameTypeDescriptionNotes
addr_tokenstr
all_addr_tokensList[str]
bit_offsetint
byte_offsetint
byte_sizeint
countint
data_type_indexint
field_statusstr[optional]
function_idint[optional]
imported_function_idint[optional]
kindstr
namestr
name_sourcestr
needs_namingbool
provenancestr
resolved_namestr
suggested_typestr
suggestion_confidencestr
tokenstr
type_indexint
vaddrint
valuestr
value_confidencestr
value_typestr

Example

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]