| Name | Type | Description | Notes |
|---|---|---|---|
| tag | str | ||
| value | int |
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)