Skip to content

Latest commit

History

History
29 lines (20 loc) · 858 Bytes

File metadata and controls

29 lines (20 loc) · 858 Bytes

MetaModel

Properties

NameTypeDescriptionNotes
paginationPaginationModel[optional]

Example

fromrevengai.models.meta_modelimportMetaModel# TODO update the JSON string belowjson="{}"# create an instance of MetaModel from a JSON stringmeta_model_instance=MetaModel.from_json(json)
# print the JSON string representation of the objectprint(MetaModel.to_json())
# convert the object into a dictmeta_model_dict=meta_model_instance.to_dict()
# create an instance of MetaModel from a dictmeta_model_from_dict=MetaModel.from_dict(meta_model_dict)

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