/** *

Describes an event for a database.

*/ export interface _RelationalDatabaseEvent { /** *

The database that the database event relates to.

*/ resource?: string; /** *

The timestamp when the database event was created.

*/ createdAt?: Date | string | number; /** *

The message of the database event.

*/ message?: string; /** *

The category that the database event belongs to.

*/ eventCategories?: Array | Iterable; } export interface _UnmarshalledRelationalDatabaseEvent extends _RelationalDatabaseEvent { /** *

The timestamp when the database event was created.

*/ createdAt?: Date; /** *

The category that the database event belongs to.

*/ eventCategories?: Array; }