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

NameTypeDescriptionNotes
namestr
virtual_addressint
virtual_sizeint
characteristicsstr
raw_sizeint
entropyfloat
sha3_256str

Example

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]