Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 1.99 KB

CustomizeFeatureSettings.md

File metadata and controls

55 lines (46 loc) · 1.99 KB

CustomizeFeatureSettings

Properties

Name Type Description Notes
account bool [optional]
albums bool [optional]
archive bool [optional]
delete bool [optional]
download bool [optional]
edit bool [optional]
estimates bool [optional]
favorites bool [optional]
files bool [optional]
folders bool [optional]
var_import bool [optional]
labels bool [optional]
library bool [optional]
logs bool [optional]
moments bool [optional]
people bool [optional]
places bool [optional]
private bool [optional]
ratings bool [optional]
reactions bool [optional]
review bool [optional]
search bool [optional]
services bool [optional]
settings bool [optional]
share bool [optional]
upload bool [optional]
videos bool [optional]

Example

from photoprism_client.models.customize_feature_settings import CustomizeFeatureSettings

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

# convert the object into a dict
customize_feature_settings_dict = customize_feature_settings_instance.to_dict()
# create an instance of CustomizeFeatureSettings from a dict
customize_feature_settings_from_dict = CustomizeFeatureSettings.from_dict(customize_feature_settings_dict)

[Back to Model list] [Back to API list] [Back to README]