1.1 KiB
1.1 KiB
AlbumStatisticsResponseDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| not_shared | int | ||
| owned | int | ||
| shared | int |
Example
from generated.immich.openapi_client.models.album_statistics_response_dto import AlbumStatisticsResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of AlbumStatisticsResponseDto from a JSON string
album_statistics_response_dto_instance = AlbumStatisticsResponseDto.from_json(json)
# print the JSON string representation of the object
print(AlbumStatisticsResponseDto.to_json())
# convert the object into a dict
album_statistics_response_dto_dict = album_statistics_response_dto_instance.to_dict()
# create an instance of AlbumStatisticsResponseDto from a dict
album_statistics_response_dto_from_dict = AlbumStatisticsResponseDto.from_dict(album_statistics_response_dto_dict)