Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

CustomizeTemplateSettings.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

CustomizeTemplateSettings

Properties

Name Type Description Notes
default str [optional]

Example

from photoprism_client.models.customize_template_settings import CustomizeTemplateSettings

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

# convert the object into a dict
customize_template_settings_dict = customize_template_settings_instance.to_dict()
# create an instance of CustomizeTemplateSettings from a dict
customize_template_settings_from_dict = CustomizeTemplateSettings.from_dict(customize_template_settings_dict)

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