1.3 KiB
1.3 KiB
PartnerResponseDto
Partner response
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| avatar_color | UserAvatarColor | ||
| str | User email | ||
| id | UUID | User ID | |
| in_timeline | bool | Show in timeline | [optional] |
| name | str | User name | |
| profile_changed_at | datetime | Profile change date | |
| profile_image_path | str | Profile image path |
Example
from generated.immich.openapi_client.models.partner_response_dto import PartnerResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of PartnerResponseDto from a JSON string
partner_response_dto_instance = PartnerResponseDto.from_json(json)
# print the JSON string representation of the object
print(PartnerResponseDto.to_json())
# convert the object into a dict
partner_response_dto_dict = partner_response_dto_instance.to_dict()
# create an instance of PartnerResponseDto from a dict
partner_response_dto_from_dict = PartnerResponseDto.from_dict(partner_response_dto_dict)