Files
immich-to-cloud-exporter/generated/immich/openapi_client/docs/UserPreferencesUpdateDto.md

1.7 KiB

UserPreferencesUpdateDto

Properties

Name Type Description Notes
avatar AvatarUpdate [optional]
download DownloadUpdate [optional]
email_notifications EmailNotificationsUpdate [optional]
folders FoldersUpdate [optional]
memories MemoriesUpdate [optional]
people PeopleUpdate [optional]
purchase PurchaseUpdate [optional]
ratings RatingsUpdate [optional]
shared_links SharedLinksUpdate [optional]
tags TagsUpdate [optional]

Example

from generated.immich.openapi_client.models.user_preferences_update_dto import UserPreferencesUpdateDto

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

# convert the object into a dict
user_preferences_update_dto_dict = user_preferences_update_dto_instance.to_dict()
# create an instance of UserPreferencesUpdateDto from a dict
user_preferences_update_dto_from_dict = UserPreferencesUpdateDto.from_dict(user_preferences_update_dto_dict)

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