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

1.1 KiB

UserResponseDto

Properties

Name Type Description Notes
avatar_color UserAvatarColor
email str
id str
name str
profile_changed_at datetime
profile_image_path str

Example

from generated.immich.openapi_client.models.user_response_dto import UserResponseDto

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

# convert the object into a dict
user_response_dto_dict = user_response_dto_instance.to_dict()
# create an instance of UserResponseDto from a dict
user_response_dto_from_dict = UserResponseDto.from_dict(user_response_dto_dict)

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