905 B
905 B
SyncAckDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| ack | str | ||
| type | SyncEntityType |
Example
from generated.immich.openapi_client.models.sync_ack_dto import SyncAckDto
# TODO update the JSON string below
json = "{}"
# create an instance of SyncAckDto from a JSON string
sync_ack_dto_instance = SyncAckDto.from_json(json)
# print the JSON string representation of the object
print(SyncAckDto.to_json())
# convert the object into a dict
sync_ack_dto_dict = sync_ack_dto_instance.to_dict()
# create an instance of SyncAckDto from a dict
sync_ack_dto_from_dict = SyncAckDto.from_dict(sync_ack_dto_dict)