1.6 KiB
1.6 KiB
SystemConfigJobDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| background_task | JobSettingsDto | ||
| face_detection | JobSettingsDto | ||
| library | JobSettingsDto | ||
| metadata_extraction | JobSettingsDto | ||
| migration | JobSettingsDto | ||
| notifications | JobSettingsDto | ||
| search | JobSettingsDto | ||
| sidecar | JobSettingsDto | ||
| smart_search | JobSettingsDto | ||
| thumbnail_generation | JobSettingsDto | ||
| video_conversion | JobSettingsDto |
Example
from generated.immich.openapi_client.models.system_config_job_dto import SystemConfigJobDto
# TODO update the JSON string below
json = "{}"
# create an instance of SystemConfigJobDto from a JSON string
system_config_job_dto_instance = SystemConfigJobDto.from_json(json)
# print the JSON string representation of the object
print(SystemConfigJobDto.to_json())
# convert the object into a dict
system_config_job_dto_dict = system_config_job_dto_instance.to_dict()
# create an instance of SystemConfigJobDto from a dict
system_config_job_dto_from_dict = SystemConfigJobDto.from_dict(system_config_job_dto_dict)