Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 1002 Bytes

CustomizeShareSettings.md

File metadata and controls

29 lines (20 loc) · 1002 Bytes

CustomizeShareSettings

Properties

Name Type Description Notes
title str [optional]

Example

from photoprism_client.models.customize_share_settings import CustomizeShareSettings

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

# convert the object into a dict
customize_share_settings_dict = customize_share_settings_instance.to_dict()
# create an instance of CustomizeShareSettings from a dict
customize_share_settings_from_dict = CustomizeShareSettings.from_dict(customize_share_settings_dict)

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