Skip to content

Latest commit

History

History
30 lines (21 loc) · 902 Bytes

File metadata and controls

30 lines (21 loc) · 902 Bytes

ImportModel

Properties

NameTypeDescriptionNotes
number_of_importsint
importsList[Dict[str, Dict[str, int]]]

Example

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)

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