Files

854 B

BulkIdsDto

Properties

Name Type Description Notes
ids List[str]

Example

from generated.immich.openapi_client.models.bulk_ids_dto import BulkIdsDto

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

# convert the object into a dict
bulk_ids_dto_dict = bulk_ids_dto_instance.to_dict()
# create an instance of BulkIdsDto from a dict
bulk_ids_dto_from_dict = BulkIdsDto.from_dict(bulk_ids_dto_dict)

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