Input model for inserting a string into an analysis.
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | The string literal value | |
| vaddr | int | The virtual address of the string | |
| source | StringSource | The source of the string |
fromrevengai.models.analysis_string_inputimportAnalysisStringInput# TODO update the JSON string belowjson="{}"# create an instance of AnalysisStringInput from a JSON stringanalysis_string_input_instance=AnalysisStringInput.from_json(json)
# print the JSON string representation of the objectprint(AnalysisStringInput.to_json())
# convert the object into a dictanalysis_string_input_dict=analysis_string_input_instance.to_dict()
# create an instance of AnalysisStringInput from a dictanalysis_string_input_from_dict=AnalysisStringInput.from_dict(analysis_string_input_dict)