Name | Type | Description | Notes |
---|---|---|---|
download | CustomizeDownloadSettings | [optional] | |
features | CustomizeFeatureSettings | [optional] | |
var_import | CustomizeImportSettings | [optional] | |
index | CustomizeIndexSettings | [optional] | |
maps | CustomizeMapsSettings | [optional] | |
search | CustomizeSearchSettings | [optional] | |
share | CustomizeShareSettings | [optional] | |
stack | CustomizeStackSettings | [optional] | |
templates | CustomizeTemplateSettings | [optional] | |
ui | CustomizeUISettings | [optional] |
from photoprism_client.models.customize_settings import CustomizeSettings
# TODO update the JSON string below
json = "{}"
# create an instance of CustomizeSettings from a JSON string
customize_settings_instance = CustomizeSettings.from_json(json)
# print the JSON string representation of the object
print(CustomizeSettings.to_json())
# convert the object into a dict
customize_settings_dict = customize_settings_instance.to_dict()
# create an instance of CustomizeSettings from a dict
customize_settings_from_dict = CustomizeSettings.from_dict(customize_settings_dict)