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

Name Type Description Notes
pagination PaginationModel [optional]

Example

from revengai.models.meta_model import MetaModel

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

# convert the object into a dict
meta_model_dict = meta_model_instance.to_dict()
# create an instance of MetaModel from a dict
meta_model_from_dict = MetaModel.from_dict(meta_model_dict)

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