| Name | Type | Description | Notes |
|---|---|---|---|
| number_of_imports | int | ||
| imports | List[str] |
fromrevengai.models.elf_import_modelimportELFImportModel# TODO update the JSON string belowjson="{}"# create an instance of ELFImportModel from a JSON stringelf_import_model_instance=ELFImportModel.from_json(json)
# print the JSON string representation of the objectprint(ELFImportModel.to_json())
# convert the object into a dictelf_import_model_dict=elf_import_model_instance.to_dict()
# create an instance of ELFImportModel from a dictelf_import_model_from_dict=ELFImportModel.from_dict(elf_import_model_dict)