You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
True when the binary was analysed with debug symbols
function_count
int
Number of functions in the binary
is_advanced
bool
True when the analysis was run in advanced mode
is_owner
bool
True when the caller is the analysis owner
is_system
bool
True when the analysis is owned by a system user
model_id
int
Model ID
model_name
str
Model used for analysis
owner_username
str
Username of the analysis owner
sequencer_version
str
Sequencer version, omitted when not set
[optional]
sha_256_hash
str
SHA-256 hash of the binary
team_id
int
Team ID of the analysis
Example
fromrevengai.models.analysis_basic_info_output_bodyimportAnalysisBasicInfoOutputBody# TODO update the JSON string belowjson="{}"# create an instance of AnalysisBasicInfoOutputBody from a JSON stringanalysis_basic_info_output_body_instance=AnalysisBasicInfoOutputBody.from_json(json)
# print the JSON string representation of the objectprint(AnalysisBasicInfoOutputBody.to_json())
# convert the object into a dictanalysis_basic_info_output_body_dict=analysis_basic_info_output_body_instance.to_dict()
# create an instance of AnalysisBasicInfoOutputBody from a dictanalysis_basic_info_output_body_from_dict=AnalysisBasicInfoOutputBody.from_dict(analysis_basic_info_output_body_dict)