| Name | Type | Description | Notes |
|---|
| address | int | | |
| type | str | | |
| size | int | | |
| addend | int | | |
| symbol_name | str | | |
| is_dynamic | bool | | |
| is_pltgot | bool | | |
| is_unicode_symbol_name | bool | | [optional] [default to True] |
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]