Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MailExportOptions

import type { MailExportOptions } from "https://googleapis.deno.dev/v1/vault:v1.ts";

Options for Gmail exports.

interface MailExportOptions {
exportFormat?:
| "EXPORT_FORMAT_UNSPECIFIED"
| "MBOX"
| "PST"
| "ICS";
exportLinkedDriveFiles?: boolean;
showConfidentialModeContent?: boolean;
useNewExport?: boolean;
}

§Properties

§
exportFormat?: "EXPORT_FORMAT_UNSPECIFIED" | "MBOX" | "PST" | "ICS"
[src]

The file format for exported messages.

§
exportLinkedDriveFiles?: boolean
[src]

Optional. To enable exporting linked Drive files, set to true.

§
showConfidentialModeContent?: boolean
[src]

To export confidential mode content, set to true.

§
useNewExport?: boolean
[src]

To use the new export system, set to true.