# TriggerDatabaseBackupRequest

Represents a request for triggering a database backup.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**callback** | **string** | If provided, it needs to be a valid URL. It will be a webhook call that will later execute when the backup is complete. | [optional] [default to undefined]
**createBackupFromDate** | **string** | If provided, it needs to be a date time from which the backup should include data. If not provided, the backup will include all the data. | [optional] [default to undefined]
**tables** | **Set&lt;string&gt;** | If provided, it needs to be a list of tables that exist in the database schema. The backup will only include the specified tables. If not provided, the backup will include all tables. | [optional] [default to undefined]

## Example

```typescript
import { TriggerDatabaseBackupRequest } from './api';

const instance: TriggerDatabaseBackupRequest = {
    callback,
    createBackupFromDate,
    tables,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
