| Name | Type | Description | Notes |
|---|
| name | str | | |
| virtual_address | int | | |
| virtual_size | int | | |
| characteristics | str | | |
| raw_size | int | | |
| entropy | float | | |
| sha3_256 | str | | |
fromrevengai.models.single_section_modelimportSingleSectionModel# TODO update the JSON string belowjson="{}"# create an instance of SingleSectionModel from a JSON stringsingle_section_model_instance=SingleSectionModel.from_json(json)
# print the JSON string representation of the objectprint(SingleSectionModel.to_json())
# convert the object into a dictsingle_section_model_dict=single_section_model_instance.to_dict()
# create an instance of SingleSectionModel from a dictsingle_section_model_from_dict=SingleSectionModel.from_dict(single_section_model_dict)[Back to Model list][Back to API list][Back to README]