1.7 KiB
1.7 KiB
UserPreferencesResponseDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| avatar | AvatarResponse | ||
| download | DownloadResponse | ||
| email_notifications | EmailNotificationsResponse | ||
| folders | FoldersResponse | ||
| memories | MemoriesResponse | ||
| people | PeopleResponse | ||
| purchase | PurchaseResponse | ||
| ratings | RatingsResponse | ||
| shared_links | SharedLinksResponse | ||
| tags | TagsResponse |
Example
from generated.immich.openapi_client.models.user_preferences_response_dto import UserPreferencesResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of UserPreferencesResponseDto from a JSON string
user_preferences_response_dto_instance = UserPreferencesResponseDto.from_json(json)
# print the JSON string representation of the object
print(UserPreferencesResponseDto.to_json())
# convert the object into a dict
user_preferences_response_dto_dict = user_preferences_response_dto_instance.to_dict()
# create an instance of UserPreferencesResponseDto from a dict
user_preferences_response_dto_from_dict = UserPreferencesResponseDto.from_dict(user_preferences_response_dto_dict)