Skip to content

Latest commit

History

History
46 lines (37 loc) · 1.79 KB

File metadata and controls

46 lines (37 loc) · 1.79 KB

Basic

Properties

NameTypeDescriptionNotes
binary_idintThe ID of the binary
binary_namestrThe name of the binary uploaded
binary_sizeintThe size of the binary uploaded (bytes)
creationdatetimeWhen the binary was uploaded
sha_256_hashstrThe hash of the binary uploaded
model_namestrThe model name used for analysis
model_idintThe model ID used for analysis
owner_usernamestrThe name of the owner of the binary
is_systemboolWhether the analysis is a system analysis
analysis_scopestrThe scope of the analysis
is_ownerboolWhether the current user is the owner
debugboolWhether the current analysis was analysed with debug symbols
function_countintThe number of functions in the binary
is_advancedboolWhether the analysis was advanced
base_addressint
binary_uuidstr[optional]
sequencer_versionstr[optional]
team_idintThe team ID of the analysis

Example

fromrevengai.models.basicimportBasic# TODO update the JSON string belowjson="{}"# create an instance of Basic from a JSON stringbasic_instance=Basic.from_json(json)
# print the JSON string representation of the objectprint(Basic.to_json())
# convert the object into a dictbasic_dict=basic_instance.to_dict()
# create an instance of Basic from a dictbasic_from_dict=Basic.from_dict(basic_dict)

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