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

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

Example

from revengai.models.analysis_string_input import AnalysisStringInput

# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisStringInput from a JSON string
analysis_string_input_instance = AnalysisStringInput.from_json(json)
# print the JSON string representation of the object
print(AnalysisStringInput.to_json())

# convert the object into a dict
analysis_string_input_dict = analysis_string_input_instance.to_dict()
# create an instance of AnalysisStringInput from a dict
analysis_string_input_from_dict = AnalysisStringInput.from_dict(analysis_string_input_dict)

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