Skip to content

Latest commit

History

History
32 lines (23 loc) · 1 KB

File metadata and controls

32 lines (23 loc) · 1 KB

ModuleLoadEntry

Properties

NameTypeDescriptionNotes
modulesDict[str, str][optional]
pidint
process_namestr[optional]
process_seqidint[optional]

Example

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]