/** *
Represents the settings used to enable point in time recovery.
*/ export interface _PointInTimeRecoverySpecification { /** *Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
*/ PointInTimeRecoveryEnabled: boolean; } export declare type _UnmarshalledPointInTimeRecoverySpecification = _PointInTimeRecoverySpecification;