Skip to content

Latest commit

History

History
30 lines (21 loc) · 925 Bytes

File metadata and controls

30 lines (21 loc) · 925 Bytes

ELFImportModel

Properties

NameTypeDescriptionNotes
number_of_importsint
importsList[str]

Example

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)

[Back to Model list][Back to API list][Back to README]