Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

AnalysisStringInput

Input model for inserting a string into an analysis.

Properties

NameTypeDescriptionNotes
valuestrThe string literal value
vaddrintThe virtual address of the string
sourceStringSourceThe source of the string

Example

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)

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