| Name | Type | Description | Notes |
|---|---|---|---|
| number_of_imports | int | ||
| imports | List[Dict[str, Dict[str, int]]] |
fromrevengai.models.import_modelimportImportModel# TODO update the JSON string belowjson="{}"# create an instance of ImportModel from a JSON stringimport_model_instance=ImportModel.from_json(json)
# print the JSON string representation of the objectprint(ImportModel.to_json())
# convert the object into a dictimport_model_dict=import_model_instance.to_dict()
# create an instance of ImportModel from a dictimport_model_from_dict=ImportModel.from_dict(import_model_dict)