| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | PaginationModel | [optional] |
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)