| Name | Type | Description | Notes |
|---|---|---|---|
| scrape_third_party_config | ScrapeThirdPartyConfig | Settings to scrape third party sources | [optional] |
| generate_capabilities | bool | A configuration option for generating capabilities of a binary | [optional] [default to False] |
| no_cache | bool | When enabled, skips using cached data within the processing. | [optional] [default to False] |
| advanced_analysis | bool | Enables an advanced security analysis. | [optional] [default to False] |
| sandbox_config | SandboxOptions | Including a sandbox config enables the dynamic execution sandbox | [optional] |
fromrevengai.models.analysis_configimportAnalysisConfig# TODO update the JSON string belowjson="{}"# create an instance of AnalysisConfig from a JSON stringanalysis_config_instance=AnalysisConfig.from_json(json)
# print the JSON string representation of the objectprint(AnalysisConfig.to_json())
# convert the object into a dictanalysis_config_dict=analysis_config_instance.to_dict()
# create an instance of AnalysisConfig from a dictanalysis_config_from_dict=AnalysisConfig.from_dict(analysis_config_dict)