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