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