Skip to content

Backend

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.backend import Backend

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

# convert the object into a dict
backend_dict = backend_instance.to_dict()
# create an instance of Backend from a dict
backend_form_dict = backend.from_dict(backend_dict)
[Back to Model list] [Back to API list] [Back to README]