Skip to content

Latest commit

History

History
30 lines (21 loc) · 891 Bytes

File metadata and controls

30 lines (21 loc) · 891 Bytes

ExportModel

Properties

NameTypeDescriptionNotes
number_of_exportsint
exportsList[Dict[str, int]]

Example

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)

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