Files

925 B

FileChecksumDto

Properties

Name Type Description Notes
filenames List[str]

Example

from generated.immich.openapi_client.models.file_checksum_dto import FileChecksumDto

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

# convert the object into a dict
file_checksum_dto_dict = file_checksum_dto_instance.to_dict()
# create an instance of FileChecksumDto from a dict
file_checksum_dto_from_dict = FileChecksumDto.from_dict(file_checksum_dto_dict)

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