| Name | Type | Description | Notes |
|---|
| modules | Dict[str, str] | | [optional] |
| pid | int | | |
| process_name | str | | [optional] |
| process_seqid | int | | [optional] |
fromrevengai.models.module_load_entryimportModuleLoadEntry# TODO update the JSON string belowjson="{}"# create an instance of ModuleLoadEntry from a JSON stringmodule_load_entry_instance=ModuleLoadEntry.from_json(json)
# print the JSON string representation of the objectprint(ModuleLoadEntry.to_json())
# convert the object into a dictmodule_load_entry_dict=module_load_entry_instance.to_dict()
# create an instance of ModuleLoadEntry from a dictmodule_load_entry_from_dict=ModuleLoadEntry.from_dict(module_load_entry_dict)[Back to Model list][Back to API list][Back to README]