Skip to content

Latest commit

History

History
36 lines (27 loc) · 1.08 KB

File metadata and controls

36 lines (27 loc) · 1.08 KB

ELFRelocation

Properties

NameTypeDescriptionNotes
addressint
typestr
sizeint
addendint
symbol_namestr
is_dynamicbool
is_pltgotbool
is_unicode_symbol_namebool[optional] [default to True]

Example

fromrevengai.models.elf_relocationimportELFRelocation# TODO update the JSON string belowjson="{}"# create an instance of ELFRelocation from a JSON stringelf_relocation_instance=ELFRelocation.from_json(json)
# print the JSON string representation of the objectprint(ELFRelocation.to_json())
# convert the object into a dictelf_relocation_dict=elf_relocation_instance.to_dict()
# create an instance of ELFRelocation from a dictelf_relocation_from_dict=ELFRelocation.from_dict(elf_relocation_dict)

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