/** *

Describes a pending database maintenance action.

*/ export interface _PendingMaintenanceAction { /** *

The type of pending database maintenance action.

*/ action?: string; /** *

Additional detail about the pending database maintenance action.

*/ description?: string; /** *

The effective date of the pending database maintenance action.

*/ currentApplyDate?: Date | string | number; } export interface _UnmarshalledPendingMaintenanceAction extends _PendingMaintenanceAction { /** *

The effective date of the pending database maintenance action.

*/ currentApplyDate?: Date; }