Properties
Example
from odm_api.models.meta_response import MetaResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MetaResponse from a JSON string
meta_response_instance = MetaResponse.from_json(json)
# print the JSON string representation of the object
print(MetaResponse.to_json())
# convert the object into a dict
meta_response_dict = meta_response_instance.to_dict()
# create an instance of MetaResponse from a dict
meta_response_from_dict = MetaResponse.from_dict(meta_response_dict)
[Back to Model list] [Back to API list] [Back to README]