[TASK] Initial version, with some help from Junie. Copies all files in albums to the local filesystem.

This commit is contained in:
2025-04-19 18:05:53 +02:00
parent f5fed71def
commit 1e2e7dfb5a
865 changed files with 119341 additions and 2 deletions

View File

@@ -0,0 +1,50 @@
# ExifResponseDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**city** | **str** | | [optional]
**country** | **str** | | [optional]
**date_time_original** | **datetime** | | [optional]
**description** | **str** | | [optional]
**exif_image_height** | **float** | | [optional]
**exif_image_width** | **float** | | [optional]
**exposure_time** | **str** | | [optional]
**f_number** | **float** | | [optional]
**file_size_in_byte** | **int** | | [optional]
**focal_length** | **float** | | [optional]
**iso** | **float** | | [optional]
**latitude** | **float** | | [optional]
**lens_model** | **str** | | [optional]
**longitude** | **float** | | [optional]
**make** | **str** | | [optional]
**model** | **str** | | [optional]
**modify_date** | **datetime** | | [optional]
**orientation** | **str** | | [optional]
**projection_type** | **str** | | [optional]
**rating** | **float** | | [optional]
**state** | **str** | | [optional]
**time_zone** | **str** | | [optional]
## Example
```python
from generated.immich.openapi_client.models.exif_response_dto import ExifResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of ExifResponseDto from a JSON string
exif_response_dto_instance = ExifResponseDto.from_json(json)
# print the JSON string representation of the object
print(ExifResponseDto.to_json())
# convert the object into a dict
exif_response_dto_dict = exif_response_dto_instance.to_dict()
# create an instance of ExifResponseDto from a dict
exif_response_dto_from_dict = ExifResponseDto.from_dict(exif_response_dto_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)