/* tslint:disable */ /* eslint-disable */ /** * database/backup * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents a request for triggering a database backup. */ export interface TriggerDatabaseBackupRequest { /** * If provided, it needs to be a valid URL. It will be a webhook call that will later execute when the backup is complete. */ callback?: 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. */ createBackupFromDate?: string; /** * 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. */ tables?: Set; }