BackendSettings
Properties
Name |
Type |
Description |
Notes |
|
|
|
|
Example
from deepsearch.cps.apis.public_v2.models.backend_settings import BackendSettings
# TODO update the JSON string below
json = "{}"
# create an instance of BackendSettings from a JSON string
backend_settings_instance = BackendSettings.from_json(json)
# print the JSON string representation of the object
print(BackendSettings.to_json())
# convert the object into a dict
backend_settings_dict = backend_settings_instance.to_dict()
# create an instance of BackendSettings from a dict
backend_settings_form_dict = backend_settings.from_dict(backend_settings_dict)
[Back to Model list] [Back to API list] [Back to README]