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

1.1 KiB

PersonStatisticsResponseDto

Properties

Name Type Description Notes
assets int

Example

from generated.immich.openapi_client.models.person_statistics_response_dto import PersonStatisticsResponseDto

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

# convert the object into a dict
person_statistics_response_dto_dict = person_statistics_response_dto_instance.to_dict()
# create an instance of PersonStatisticsResponseDto from a dict
person_statistics_response_dto_from_dict = PersonStatisticsResponseDto.from_dict(person_statistics_response_dto_dict)

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