Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

CustomizeMapsSettings.md

File metadata and controls

30 lines (21 loc) · 1 KB

CustomizeMapsSettings

Properties

Name Type Description Notes
animate int [optional]
style str [optional]

Example

from photoprism_client.models.customize_maps_settings import CustomizeMapsSettings

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

# convert the object into a dict
customize_maps_settings_dict = customize_maps_settings_instance.to_dict()
# create an instance of CustomizeMapsSettings from a dict
customize_maps_settings_from_dict = CustomizeMapsSettings.from_dict(customize_maps_settings_dict)

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