1.2 KiB
1.2 KiB
AssetBulkUpdateDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| date_time_original | str | [optional] | |
| duplicate_id | str | [optional] | |
| ids | List[str] | ||
| is_archived | bool | [optional] | |
| is_favorite | bool | [optional] | |
| latitude | float | [optional] | |
| longitude | float | [optional] | |
| rating | float | [optional] |
Example
from generated.immich.openapi_client.models.asset_bulk_update_dto import AssetBulkUpdateDto
# TODO update the JSON string below
json = "{}"
# create an instance of AssetBulkUpdateDto from a JSON string
asset_bulk_update_dto_instance = AssetBulkUpdateDto.from_json(json)
# print the JSON string representation of the object
print(AssetBulkUpdateDto.to_json())
# convert the object into a dict
asset_bulk_update_dto_dict = asset_bulk_update_dto_instance.to_dict()
# create an instance of AssetBulkUpdateDto from a dict
asset_bulk_update_dto_from_dict = AssetBulkUpdateDto.from_dict(asset_bulk_update_dto_dict)