1.2 KiB
1.2 KiB
CreateProfileImageResponseDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| profile_changed_at | datetime | ||
| profile_image_path | str | ||
| user_id | str |
Example
from generated.immich.openapi_client.models.create_profile_image_response_dto import CreateProfileImageResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of CreateProfileImageResponseDto from a JSON string
create_profile_image_response_dto_instance = CreateProfileImageResponseDto.from_json(json)
# print the JSON string representation of the object
print(CreateProfileImageResponseDto.to_json())
# convert the object into a dict
create_profile_image_response_dto_dict = create_profile_image_response_dto_instance.to_dict()
# create an instance of CreateProfileImageResponseDto from a dict
create_profile_image_response_dto_from_dict = CreateProfileImageResponseDto.from_dict(create_profile_image_response_dto_dict)