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

Name Type Description Notes
number_of_imports int
imports List[Dict[str, Dict[str, int]]]

Example

from revengai.models.import_model import ImportModel

# TODO update the JSON string below
json = "{}"
# create an instance of ImportModel from a JSON string
import_model_instance = ImportModel.from_json(json)
# print the JSON string representation of the object
print(ImportModel.to_json())

# convert the object into a dict
import_model_dict = import_model_instance.to_dict()
# create an instance of ImportModel from a dict
import_model_from_dict = ImportModel.from_dict(import_model_dict)

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