Files
immich-to-cloud-exporter/generated/immich/openapi_client/docs/StackCreateDto.md

943 B

StackCreateDto

Properties

Name Type Description Notes
asset_ids List[str] first asset becomes the primary

Example

from generated.immich.openapi_client.models.stack_create_dto import StackCreateDto

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

# convert the object into a dict
stack_create_dto_dict = stack_create_dto_instance.to_dict()
# create an instance of StackCreateDto from a dict
stack_create_dto_from_dict = StackCreateDto.from_dict(stack_create_dto_dict)

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