Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

File metadata and controls

35 lines (26 loc) · 1.1 KB

SingleSectionModel

Properties

Name Type Description Notes
name str
virtual_address int
virtual_size int
characteristics str
raw_size int
entropy float
sha3_256 str

Example

from revengai.models.single_section_model import SingleSectionModel

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

# convert the object into a dict
single_section_model_dict = single_section_model_instance.to_dict()
# create an instance of SingleSectionModel from a dict
single_section_model_from_dict = SingleSectionModel.from_dict(single_section_model_dict)

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