Interface DriveRetentionPolicy

Retention policy subdocument on DriveInterface.

interface DriveRetentionPolicy {
    enabled?: boolean;
    retention_period?: number;
    retention_type?: "LEGAL_HOLD" | "COMPLIANCE" | "BUSINESS";
}

Properties

enabled?: boolean
retention_period?: number

Retention period in days

retention_type?: "LEGAL_HOLD" | "COMPLIANCE" | "BUSINESS"