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