1.0 KiB
1.0 KiB
SystemConfigBackupsDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| database | DatabaseBackupConfig |
Example
from generated.immich.openapi_client.models.system_config_backups_dto import SystemConfigBackupsDto
# TODO update the JSON string below
json = "{}"
# create an instance of SystemConfigBackupsDto from a JSON string
system_config_backups_dto_instance = SystemConfigBackupsDto.from_json(json)
# print the JSON string representation of the object
print(SystemConfigBackupsDto.to_json())
# convert the object into a dict
system_config_backups_dto_dict = system_config_backups_dto_instance.to_dict()
# create an instance of SystemConfigBackupsDto from a dict
system_config_backups_dto_from_dict = SystemConfigBackupsDto.from_dict(system_config_backups_dto_dict)