Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

CustomizeIndexSettings.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

CustomizeIndexSettings

Properties

Name Type Description Notes
convert bool [optional]
path str [optional]
rescan bool [optional]
skip_archived bool [optional]

Example

from photoprism_client.models.customize_index_settings import CustomizeIndexSettings

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

# convert the object into a dict
customize_index_settings_dict = customize_index_settings_instance.to_dict()
# create an instance of CustomizeIndexSettings from a dict
customize_index_settings_from_dict = CustomizeIndexSettings.from_dict(customize_index_settings_dict)

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