| Name | Type | Description | Notes |
|---|
| capability | str | | |
| description | str | | |
| function_id | int | | |
| function_name | str | | |
| type | str | | |
| vaddr | int | | |
fromrevengai.models.capability_entryimportCapabilityEntry# TODO update the JSON string belowjson="{}"# create an instance of CapabilityEntry from a JSON stringcapability_entry_instance=CapabilityEntry.from_json(json)
# print the JSON string representation of the objectprint(CapabilityEntry.to_json())
# convert the object into a dictcapability_entry_dict=capability_entry_instance.to_dict()
# create an instance of CapabilityEntry from a dictcapability_entry_from_dict=CapabilityEntry.from_dict(capability_entry_dict)[Back to Model list][Back to API list][Back to README]