| Name | Type | Description | Notes |
|---|---|---|---|
| number_of_exports | int | ||
| exports | List[Dict[str, int]] |
fromrevengai.models.export_modelimportExportModel# TODO update the JSON string belowjson="{}"# create an instance of ExportModel from a JSON stringexport_model_instance=ExportModel.from_json(json)
# print the JSON string representation of the objectprint(ExportModel.to_json())
# convert the object into a dictexport_model_dict=export_model_instance.to_dict()
# create an instance of ExportModel from a dictexport_model_from_dict=ExportModel.from_dict(export_model_dict)