Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 916 Bytes

File metadata and controls

30 lines (21 loc) · 916 Bytes

ElfDynamicEntry

Properties

Name Type Description Notes
tag str
value int

Example

from revengai.models.elf_dynamic_entry import ElfDynamicEntry

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

# convert the object into a dict
elf_dynamic_entry_dict = elf_dynamic_entry_instance.to_dict()
# create an instance of ElfDynamicEntry from a dict
elf_dynamic_entry_from_dict = ElfDynamicEntry.from_dict(elf_dynamic_entry_dict)

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