2.4 KiB
2.4 KiB
SystemConfigDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| backup | SystemConfigBackupsDto | ||
| ffmpeg | SystemConfigFFmpegDto | ||
| image | SystemConfigImageDto | ||
| job | SystemConfigJobDto | ||
| library | SystemConfigLibraryDto | ||
| logging | SystemConfigLoggingDto | ||
| machine_learning | SystemConfigMachineLearningDto | ||
| map | SystemConfigMapDto | ||
| metadata | SystemConfigMetadataDto | ||
| new_version_check | SystemConfigNewVersionCheckDto | ||
| notifications | SystemConfigNotificationsDto | ||
| oauth | SystemConfigOAuthDto | ||
| password_login | SystemConfigPasswordLoginDto | ||
| reverse_geocoding | SystemConfigReverseGeocodingDto | ||
| server | SystemConfigServerDto | ||
| storage_template | SystemConfigStorageTemplateDto | ||
| templates | SystemConfigTemplatesDto | ||
| theme | SystemConfigThemeDto | ||
| trash | SystemConfigTrashDto | ||
| user | SystemConfigUserDto |
Example
from generated.immich.openapi_client.models.system_config_dto import SystemConfigDto
# TODO update the JSON string below
json = "{}"
# create an instance of SystemConfigDto from a JSON string
system_config_dto_instance = SystemConfigDto.from_json(json)
# print the JSON string representation of the object
print(SystemConfigDto.to_json())
# convert the object into a dict
system_config_dto_dict = system_config_dto_instance.to_dict()
# create an instance of SystemConfigDto from a dict
system_config_dto_from_dict = SystemConfigDto.from_dict(system_config_dto_dict)