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

1.1 KiB

DatabaseBackupConfig

Properties

Name Type Description Notes
cron_expression str Cron expression
enabled bool Enabled
keep_last_amount int Keep last amount

Example

from generated.immich.openapi_client.models.database_backup_config import DatabaseBackupConfig

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

# convert the object into a dict
database_backup_config_dict = database_backup_config_instance.to_dict()
# create an instance of DatabaseBackupConfig from a dict
database_backup_config_from_dict = DatabaseBackupConfig.from_dict(database_backup_config_dict)

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