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

NameTypeDescriptionNotes
tagstr
valueint

Example

fromrevengai.models.elf_dynamic_entryimportElfDynamicEntry# TODO update the JSON string belowjson="{}"# create an instance of ElfDynamicEntry from a JSON stringelf_dynamic_entry_instance=ElfDynamicEntry.from_json(json)
# print the JSON string representation of the objectprint(ElfDynamicEntry.to_json())
# convert the object into a dictelf_dynamic_entry_dict=elf_dynamic_entry_instance.to_dict()
# create an instance of ElfDynamicEntry from a dictelf_dynamic_entry_from_dict=ElfDynamicEntry.from_dict(elf_dynamic_entry_dict)

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