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

1.9 KiB

AllJobStatusResponseDto

Properties

Name Type Description Notes
background_task JobStatusDto
backup_database JobStatusDto
duplicate_detection JobStatusDto
face_detection JobStatusDto
facial_recognition JobStatusDto
library JobStatusDto
metadata_extraction JobStatusDto
migration JobStatusDto
notifications JobStatusDto
search JobStatusDto
sidecar JobStatusDto
smart_search JobStatusDto
storage_template_migration JobStatusDto
thumbnail_generation JobStatusDto
video_conversion JobStatusDto

Example

from generated.immich.openapi_client.models.all_job_status_response_dto import AllJobStatusResponseDto

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

# convert the object into a dict
all_job_status_response_dto_dict = all_job_status_response_dto_instance.to_dict()
# create an instance of AllJobStatusResponseDto from a dict
all_job_status_response_dto_from_dict = AllJobStatusResponseDto.from_dict(all_job_status_response_dto_dict)

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